-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
50 lines (38 loc) · 1.78 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<title>HMS</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="web/css/style.css" rel="stylesheet" type="text/css" />
<link href="web/css/fontawesome-all.css" rel="stylesheet" />
</head>
<body style="background: url(web/images/i.jpg) ;font-family: 'Times New Roman', serif;">
<h1>Hostel Room Allocation System</h1>
<div class=" w3l-login-form">
<h2>Student Login</h2>
<form action="includes/login.inc.php" method="POST">
<div class=" w3l-form-group">
<label>Student Roll No:</label>
<div class="group">
<i class="fas fa-user"></i>
<input type="text" class="form-control" name="student_roll_no" placeholder="Roll No" required="required" />
</div>
</div>
<div class=" w3l-form-group">
<label>Password:</label>
<div class="group">
<i class="fas fa-unlock"></i>
<input type="password" class="form-control" name="pwd" placeholder="Password" required="required" />
</div>
</div>
<button type="submit" name="login-submit">Login</button>
</form>
<p class=" w3l-register-p">Login as<a href="login-hostel_manager.php" class="register"> Hostel-Manager/Admin</a></p>
<p class=" w3l-register-p">Don't have an account?<a href="signup.php" class="register"> Sign up</a></p>
</div>
<footer>
<p class="copyright-agileinfo"> © 2021 MS Enagae Project | Designed by Sayani </p>
</footer>
</body>
</html>