-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
106 lines (91 loc) · 3.21 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
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/w3css/3/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<title>Face Recognition</title>
<style>
.btn {
background-color: DodgerBlue;
border: none;
color: white;
padding: 12px 16px;
font-size: 16px;
cursor: pointer;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: RoyalBlue;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<nav class="w3-bar w3-black">
<button class="btn"><i class="fa fa-home"></i> Home</button>
<button class="btn"><i class="fa fa-phone"></i> Contact us</button>
</nav>
<div>
<section class="w3-container w3-center w3-content" style="max-width:600px">
<div text align="center"><b><h2 class="w3-wide">DEAR VOTER</h2></div></b>
<div text align="center"><b><h2 class="w3-opacity"><i><p>SCAN FACE FOR </i></h2></div></b>
</div>
<video id='vd'></video>
<button id='clickPic'>Enroll</button>
<!-- <button id='detectFaces'>Detect</button>
<button id='verifyFace'>Verify</button>
<button id='stop'>Stop</button> -->
<canvas id='canv' width='400px' height='400px' style='display:none;'></canvas>
<script src='assets/js/util.js'></script>
<script src='assets/js/actions.js'></script>
<script src='assets/js/index.js'></script>
<h2>Cast Your Vote</h2>
<table>
<tr>
<th>S.No</th>
<th>Party Name</th>
<th>Candidate's Name</th>
</tr>
<tr>
<td>1.</td>
<td>BJP</td>
<td>Sudha shyam</td>
</tr>
<tr>
<td>2.</td>
<td>Congress</td>
<td>Maya sharma</td>
</tr>
<tr>
<td>3.</td>
<td>AAP</td>
<td>Hetal Patel</td>
</tr>
<tr>
<td>4.</td>
<td>BSP</td>
<td>Shaurya Malhotra</td>
</tr>
</table>
</body>
<input type="number" name="Vote" placeholder="S.no of Party">
<a href="thanks.html"><button class="w3-button w3-padding-large w3-light-grey" style="margin-top:10px ; text-align: center; margin: 0 auto">Login</button>
<!-- <input type="text" ></input>
<button -->
</html>