-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
58 lines (47 loc) · 1.83 KB
/
main.html
File metadata and controls
58 lines (47 loc) · 1.83 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<!-- header -->
<head>
<title>Student Attendance System</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- css files -->
<link rel="stylesheet" href="css/main_page.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- js files -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<!-- main heading -->
<div class="jumbotron text-center" style="margin-bottom:0 " >
<h1 >Attendance Tracking Management System</h1>
</div>
<table class="table">
<thead></thead>
<tbody>
<tr>
<!-- admin login -->
<td style="text-align:center">
<a href="admin/login.php" target="_blank"><img src="admin_login.jpg" width="350" height="200"></a>
</td>
<!-- deo login -->
<td style="text-align:center">
<a href="deo/login.php" target="_blank"><img src="deo_login.jpg" width="350" height="200"></a>
</td>
</tr>
<tr>
<!-- faculty login -->
<td style="text-align:center">
<a href="faculty/login.php" target="_blank"><img src="faculty_login.jpg" width="350" height="280"></a>
</td>
<!-- student login -->
<td style="text-align:center">
<a href="student/login.php" target="_blank"><img src="student_login.jpg" width="350" height="200"></a>
</td>
</tr>
</tbody>
</table>
</body>
</html>