-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
121 lines (105 loc) · 4.91 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Face scanner</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script defer src="js/face-api.js"></script>
<script defer src="js/main.js"></script>
<link rel="stylesheet" href="css/main.css">
<!-- <link href="css/all.css" rel="stylesheet"> -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<section id="header">
<div>
<h2 class="text-center bg-success p-2"><a href="#main-content" class="text-white">Face scanner</h2>
</a>
</div>
</section>
<section id="main-content">
<div class="container">
<div class="row">
<div class="col-md-12 p-3">
<div class="login-box p-3 pl-5">
<div class="row d-block text-center pb-3"><h2>Registration</h2></div>
<div class="row d-block">
<form method="POST" enctype="multipart/form-data" id="fileUploadForm">
<div class="form-group row">
<label for="name" class="col-sm-4 col-form-label">Name</label>
<div class="col-sm-6">
<input type="text" class="form-control" name="userName" id="name">
</div>
</div>
<div class="form-group row">
<label for="emailID" class="col-sm-4 col-form-label">Email Address</label>
<div class="col-sm-6">
<input type="text" class="form-control" id="emailID" name="emailID">
</div>
</div>
<div class="form-group row">
<label for="inputPassword1" class="col-sm-4 col-form-label">Password</label>
<div class="col-sm-6">
<input type="password" class="form-control" id="password1" name="password1">
</div>
</div>
<div class="form-group row">
<label for="inputPassword3" class="col-sm-4 col-form-label">Confirm Password</label>
<div class="col-sm-6">
<input type="password" class="form-control" id="password2" name="password2">
</div>
</div>
<div class="form-group row">
<label for="dob" class="col-sm-4 col-form-label">Date Of Birth</label>
<div class="col-sm-6">
<input type="date" class="form-control" id="dob" name="dob">
</div>
</div>
<div class="form-group row">
<label for="genderSelect" class="col-sm-4 col-form-label">Gender</label>
<div class="col-sm-6">
<select id="genderSelect" class="form-control" name="genderSelect">
<option selected>Choose type of Gender...</option>
<option>Male</option>
<option>Female</option>
<option>Trans</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-4 col-form-label">Upload Picture</label>
<div class="col-sm-6">
<input type="file" class="form-control" id="uploadPic" name="uploadPic">
</div>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="termCheck" value="" id="defaultCheck1">
<label class="form-check-label" for="defaultCheck1">
Agree to terms
</label>
</div>
<div><img src="" alt="" id="bannerImg"></div>
<div class="form-group row">
<div class="col-sm-10 text-center">
<button type="submit" id="registerBtn" class="btn btn-primary">Register</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>