-
Notifications
You must be signed in to change notification settings - Fork 0
/
find.html
62 lines (54 loc) · 1.94 KB
/
find.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body style="margin:50px" class="overflow-hidden">
<div class="container" >
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">
<img src="images/aavatar.svg" width="30" height="30" class="d-inline-block align-top" alt="">
Person Finder
</a>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">
About Us
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
Our Moto
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
Contact Us
</a>
</li>
</ul>
</nav>
<img src="images/find.svg" width="70%" class="m-0 img-fluid float-right" alt="Responsive image">
<br><br>
<h1>Find Someone</h1>
<br>
<div class="form-group ">
<label for="formFileMd" class="form-label"><b><a class="text-warning">Upload </a>Image of Lost
Person</b></label><br>
<input class="btn-default" name="image_l" id="formFileMd" required type="file" accept="image/*"/><br>
<small>Please upload proper & clear image of persons face for better results.</small><br>
<br>
<button type="submit" style="color:black;background:#ffc727" class="btn btn-default"><b>Compare Faces</b></button>
</div>
<footer class="bg-light text-center text-lg-start fixed-bottom bg-light navbar-light">
<!-- Copyright -->
<div class="text-center p-3" style="background-color: white;">
© 2020 Copyright:
<a class="text-warning" href="https://github.com/Person-Finder"><b>Person-Finder</b></a>
</div>
<!-- Copyright -->
</footer>
</div>
</body>
</html>