-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 1.39 KB
/
index.html
File metadata and controls
42 lines (41 loc) · 1.39 KB
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
<!-- index.html -->
<html>
<head>
<title>Login</title>
<link rel="icon" type="image/png" href="files/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styl.css">
</head>
<body>
<div class="wrapper">
<!-- Login Form Title -->
<div class="title">
Login Form
</div>
<br>
<!-- Login Form -->
<form action="total.php" method="POST">
<!-- Input field for Register Number -->
<div class="field">
<input type="number" name="Reg" placeholder="Enter Register Number" required autofocus>
</div>
<br>
<!-- Input field for Student Name -->
<div class="field">
<input type="text" name="Name" placeholder="Enter Student Name" required>
</div>
<br>
<!-- Input field for Date of Birth -->
<!-- DOB added just to avoid others sneaking into the user's account -->
<!-- <div class="field">
<input type="text" name="Date" placeholder="Date Of Birth" onfocus="(this.type='date')" required>
</div> -->
<br>
<!-- Submit button -->
<div class="field">
<input type="submit" value="Login">
</div>
</form>
</div>
</body>
</html>