-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckmyface.html
More file actions
53 lines (35 loc) · 1.96 KB
/
checkmyface.html
File metadata and controls
53 lines (35 loc) · 1.96 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>CheckMyFace</title>
</head>
<body>
<div class="container-fluid d-flex" >
<div class="form-group col-md-4">
<label for="validatedCustomFile">Upload face photo</label>
<div class="custom-file">
<input type="file" class="custom-file-input" id="validatedCustomFile" name="picture">
<label class="custom-file-label" for="validatedCustomFile" id="labelCustomFile">First photo...</label>
</div>
</div>
<div class="form-group col-md-4 ">
<label for="validatedCustomFile2">Upload face photo</label>
<div class="custom-file">
<input type="file" class="custom-file-input" id="validatedCustomFile2" name="picture2">
<label class="custom-file-label" for="validatedCustomFile2" id="labelCustomFile2">Second photo...</label>
</div>
</div>
<div class="form-group col-md-4">
<label for="inputSubmit">Try it out..</label>
<button id="inputSubmit" type="submit" class="form-control btn btn-success">
Start comparing
</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
</body>
</html>