-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtake_att_page.html
57 lines (50 loc) · 1.33 KB
/
take_att_page.html
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
<!DOCTYPE html>
<html>
<head>
<title>VIIT_Attendence</title>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="materialize.min.css">
<script type="text/javascript" src="lib/jquery-3.4.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="att_page_css.css">
<!-- FONT -->
<link href="https://fonts.googleapis.com/css?family=Lobster&display=swap" rel="stylesheet">
<!-- FONT -->
</head>
<body>
<div id="heading_box">
<center>
<h1 id="heading">LETS TAKE SOME ATTENDENCE.</h1>
</center>
</div>
<div id="att_box">
<div class="container" id="box_of_collection">
<ul class="collection">
<li class="collection-item">
<div class="row" id="att_box_row_1">
<div class="col-lg-8" id="att_name">
Kshitij
</div>
<div class="col-lg-4">
<div class="switch">
<label>
Absent
<input type="checkbox">
<span class="lever"></span>
Present
</label>
</div>
</div>
</div>
</li>
</ul>
<center>
<br>
<br>
<br>
<br>
<button type="button" class="btn btn-outline-success btn-lg">POST ATTENDENCE</button>
</center>
</div>
</div>
</body>
</html>