-
Notifications
You must be signed in to change notification settings - Fork 1
/
profile.html
68 lines (54 loc) · 2.71 KB
/
profile.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dashboard</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="profile.css">
</head>
<body>
<section class="dashboard">
<div class="profile">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="profile-image" viewBox="0 0 16 16">
<path d="M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0z"/>
<path fill-rule="evenodd" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1z"/>
</svg>
<!-- <div class="details">
<div class="center">
<div class="eid">
<p class="field large">EID : </p>
<p class="value">8726487</p>
</div>
</div>
<div class="flex-row">
<div class="flex-column end">
<div class="flex-column right">
<div>
<p class="field">First name</p>
<p class="value">Mohamed Asif</p>
</div>
<div>
<p class="field">Last name</p>
<p class="value">Abdul Azeez</p>
</div>
<div>
<p class="field">DOB</p>
<p class="value">10-09-2002</p>
</div>
</div>
</div>
</div>
<div class="center">
<div class="attendance">
<p class="field large">Attendance : </p>
<p class="value">86 %</p>
</div>
</div>
</div> -->
</div>
</section>
<script src="profile.js" type="module"></script>
</body>
</html>