-
Notifications
You must be signed in to change notification settings - Fork 0
/
student-list.html
31 lines (31 loc) · 1.04 KB
/
student-list.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
<!DOCTYPE html>
<html>
<head>
<title>Student Listing</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'/>
<link href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css' rel='stylesheet' type='text/css'/>
<link rel="shortcut icon" type="image/png" href="images/certificate.ico"/>
</head>
<body class="container">
<div class="page-header">
<h1>Student Listing</h1>
</div>
<div class="table-responsive">
<table class="table table-bordered" style="display: none">
<thead>
<tr>
<th>Full Name</th>
<th>Account Address</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<a href="student.html" class="btn btn-primary">Create Student</a>
<a href="admin.html" class="btn">Back</a>
</body>
<script src="https://cdn.rawgit.com/ethereum/web3.js/develop/dist/web3.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script src="js/student-list.js"></script>
</html>