-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (25 loc) · 928 Bytes
/
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
<html>
<head>
<title>Online Voting System</title>
<link rel="stylesheet" href="css/stylesheet.css">
</head>
<body>
<div id="headersection">
<h1>Online Voting System</h1>
</div>
<hr>
<div id="bodysection">
<form action="#">
<h2>Login</h2>
<input type="number" name="mobile" placeholder ="Enter Mobile"><br><br>
<input type="password" name="password" placeholder="Enter Password"><br><br>
<select id="dropbox" name="role">
<option value="1">Voter</option>
<option value="2">Group</option>
</select><br><br>
<button id="loginbtn">Login</button><br><br>
New User ? <a href="Routes/Register.html">Register here</a>
</form>
</div>
</body>
</html>