-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign.html
51 lines (50 loc) · 1.86 KB
/
sign.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<form>
<div class="form-row">
<div class="col">Name
<input type="text" class="form-control" placeholder="name">
</div>
<div class="col">Age
<input type="text" class="form-control" placeholder="age">
</div>
<div class="col">Education
<input type="text" class="form-control" placeholder="education">
</div>
</div>
<div class="form-row">
<div class="col">Username
<input type="text" class="form-control" placeholder="username">
</div>
<div class="col">password
<input type="password" class="form-control" placeholder="password">
</div>
<div class="col">Date of Detection
<input type="date" class="form-control" placeholder="Date">
</div>
</div>
<div class="form-row">
<div class="col">Designation
<input type="text" class="form-control" placeholder="Designation">
</div>
<div class="col">
<label for="exampleFormControlFile1">Test Picture</label>
<input type="file" class="form-control-file" id="exampleFormControlFile1">
</div>
<div class="col">
<label for="exampleFormControlFile1">Original Picture</label>
<input type="file" class="form-control-file" id="exampleFormControlFile1">
</div>
</div>
<button class="btn btn-danger" type="submit">Submit form</button>
</form>
</body>
</html>