-
Notifications
You must be signed in to change notification settings - Fork 0
/
studenthome.html
85 lines (85 loc) · 2.26 KB
/
studenthome.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Student Dashboard</title>
</head>
<body>
<div class="container mt-5">
<div class="card">
<div class="card-header">
<h3>Student Dashboard</h3>
</div>
<div class="card-body">
<div class="row">
<div class="col-sm-3">
<h5>Username:</h5>
</div>
<div class="col-sm-9">
<p>student1</p>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<h5>Email:</h5>
</div>
<div class="col-sm-9">
<p>[email protected]</p>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<h5>Role:</h5>
</div>
<div class="col-sm-9">
<p>student</p>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<h5>Attendance:</h5>
</div>
<div class="col-sm-9">
<table class="table table-bordered">
<thead>
<tr>
<th>Date</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>2022-01-01</td>
<td>present</td>
</tr>
<tr>
<td>2022-01-02</td>
<td>absent</td>
</tr>
<tr>
<td>2022-01-03</td>
<td>present</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-3">
<h5>Notes:</h5>
</div>
<div class="col-sm-9">
<table class="table table-bordered">
<thead>
<tr></tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</div>
</body>
</html>