-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudentprofile.html
66 lines (66 loc) · 2.09 KB
/
studentprofile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Student profile</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<a href="index.html"><li>Home</li></a>
</ul>
<h3>Online Attendance System</h3>
<!-- <ul>
<a href="teachersignup.html"><li>Teacher Signup</li></a>
<a href="studentsigup.html"><li>Student Signup</li></a>
</ul> -->
<ul>
<a href="studentlogin.html"><li>Logout</li></a>
</ul>
</nav>
</header>
<h1 id="welcomestudent">
Welcome, see your Attendance Data here:
</h1>
<hr id="stuprohr">
<div class="enterprn">
<label for="stuproprn">Enter Your PRN:</label>
<input type="number" name="stuprn" id="stuproprn" placeholder="Student PRN" required>
<button type="submit" id="studatabtn" onclick="showstudata()">Show Data</button>
<button type="submit" id="refreshbtnstupro" onclick="refreshbtnstupro()">Refresh</button>
</div>
<hr id="stuprohr">
<table style="border: 2px solid black;" id="studenttables">
<tr class="name" style="border: px solid black;">
<td style="font-weight: bold; border: 1px solid black;">Name</td>
</tr>
<tr class="prn" style="border: 2px solid black;">
<td style="font-weight: bold; border: 1px solid black;">PRN</td>
</tr>
<tr class="email" style="border: 2px solid black;">
<td style="font-weight: bold; border: 1px solid black;">Email</td>
</tr>
<tr class="password" style="border: 2px solid black;">
<td style="font-weight: bold; border: 1px solid black;">Password</td>
</tr>
</table>
<table style="border: 2px solid black;" id="studenttables">
<thead>
<tr class="stableHead" style="border: 2px solid black;">
<th>Name</th>
<th>PRN</th>
</tr>
</thead>
<tbody class="stableBody">
<!-- <td></td>
<td></td>
<td></td> -->
</tbody>
</table>
<script src="index.js"></script>
</body>
</html>