-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
30 lines (27 loc) · 1.11 KB
/
index.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
<html>
<head>
<title>Online voting system - Home</title>
<link rel="stylesheet" href="css/stylesheet.css">
</head>
<body>
<center>
<div id="headerSection">
<h1>Online Voting System</h1>
</div>
<hr>
<div id="loginSection">
<h2>Login</h2>
<form action="api/login.php" method="POST">
<input type="number" name="mob" placeholder="Enter mobile" required><br><br>
<input type="password" name="pass" placeholder="Enter password" required><br><br>
<select name="role" style="width: 15%; border: 2px solid black">
<option value="1">Voter</option>
<option value="2">Group</option>
</select><br><br>
<button id="loginbtn" type="submit" name="loginbtn">Login</button><br><br>
New user? <a href="routes/register.php">Register here</a>
</form>
</div>
</center>
</body>
</html>