-
Notifications
You must be signed in to change notification settings - Fork 10
/
mentee.html
119 lines (115 loc) · 4.24 KB
/
mentee.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mentees Dashboard | CCN</title>
<link rel="stylesheet" href="css\mentordashboard.css">
</head>
<body>
<div class="container">
<div class="sidebar1">
<!--Codeclan Nigeria Logo and side bar icons start here-->
<ul class="nav-link">
<li> <img class="logo" src="img\white logo.png" alt=""></li>
<li><a href=""> <i class="fas fa-th-large fa-2x text-yellow"></i><span>Dashboard</span></a></li>
<li><a href=""> <i class="fas fa-layer-group fa-2x text-white"></i><span>Courses</span></a></li>
<li active><a href=""> <i class="fas fa-layer-group fa-2x text-white"></i><span>Mentees</span></a></li>
</ul>
<button class="btn-sign-out"> <i class="fas fa-power-off"></i><span class="butn">Logout</span></button>
</div>
<!--Codeclan Nigeria Logo and side bar icons end here-->
<!--Body content starts here-->
<div class="">
<!--list content starts here-->
<table class="table" cellpadding="" cellspacing="40px" width="100%" align="center" style="max-width:100%; min-width: width 300px"; class="email-root-wrapper">
<thead>
<tr>
<th scope="col"></th>
<th scope="col">NAME</th>
<th scope="col">Courses enrolled In</th>
<th scope="col">Level</th>
<th scope="col">Mentor</th>
<th scope="col">Account Created</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"></th>
<td>Cheche Uduma</td>
<td>Intro to HTML</td>
<td>Level 1</td>
<td>Kisha</td>
<td>1st July, 2020</td>
<td id="icon"><i class="fas fa-pen"></i><i class="far fa-trash-alt"></i></td>
</tr>
<tr>
<th scope="row"></th>
<td>Cheche Uduma</td>
<td>Intro to HTML</td>
<td>Level 1</td>
<td>Kisha</td>
<td>1st July, 2020</td>
<td id="icon"><i class="fas fa-pen"></i><i class="far fa-trash-alt"></i></td>
</tr>
<tr>
<th scope="row"></th>
<td>Cheche Uduma</td>
<td>Intro to HTML</td>
<td>Level 1</td>
<td>Kisha</td>
<td>1st July, 2020</td>
<td id="icon"><i class="fas fa-pen"><i class="far fa-trash-alt"></i></i></td>
</tr>
<tr>
<th scope="row"></th>
<td>Cheche Uduma</td>
<td>Intro to HTML</td>
<td>Level 1</td>
<td>Kisha</td>
<td>1st July, 2020</td>
<td id="icon"><i class="fas fa-pen"></i><i class="far fa-trash-alt"></i></td>
</tr>
<tr>
<th scope="row"></th>
<td>Cheche Uduma</td>
<td>Intro to HTML</td>
<td>Level 1</td>
<td>Kisha</td>
<td>1st July, 2020</td>
<td id="icon"><i class="fas fa-pen"></i><i class="far fa-trash-alt"></i></td>
</tr>
<tr>
<th scope="row"></th>
<td>Cheche Uduma</td>
<td>Intro to HTML</td>
<td>Level 1</td>
<td>Kisha</td>
<td>1st July, 2020</td>
<td id="icon"><i class="fas fa-pen"></i><i class="far fa-trash-alt"></i></td>
</tr>
<tr>
<th scope="row"></th>
<td>Cheche Uduma</td>
<td>Intro to HTML</td>
<td>Level 1</td>
<td>Kisha</td>
<td>1st July, 2020</td>
<td id="icon"><i class="fas fa-pen"></i><i class="far fa-trash-alt"></i></td>
</tr>
<tr>
<th scope="row"></th>
<td>Cheche Uduma</td>
<td>Intro to HTML</td>
<td>Level 1</td>
<td>Kisha</td>
<td>1st July, 2020</td>
<td id="icon"><i class="fas fa-pen"></i><i class="far fa-trash-alt"></i></td>
</tr>
</tbody>
</table>
<!--list content ends here-->
</div>
<script src="https://kit.fontawesome.com/833e0cadb7.js" crossorigin="anonymous"></script>
</body>
</html>