forked from must-cybergroup-fdphjb/Voting_System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
voting.php
50 lines (42 loc) · 1.63 KB
/
voting.php
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
<html>
<head>
<title> Online Voting System</title>
</head>
<body>
<h1 class="text-info text-center p-3">Login</h1>
<div>
<h2>login here</h2>
<form action="./votingreg/login.php" method="POST">
<div>
<input type="text"
name="username" placeholder="enter your username"
require="required">
</div>
<div>
<input type="text"
name="mobile" placeholder="enter your number"
require="required" name="mobile" maxLength="10" minLength="10">
</div>
<div>
<input type="text"
name="registration" placeholder="enter your registration number"
require="required" >
</div>
<div>
<input type="password"
name="password" placeholder="enter your password"
require="required" name="password" >
</div>
<div>
<select name="std">
<option value="group">Group</option>
<option value="voter">Voter</option>
</select>
<button type="submit">Login</button>
</div>
<p>Don't have an account?<a href="./votingreg/registration.php">Register here</a></p>
</div>
</form>
</div>
</body>
</html>