-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (24 loc) · 1.11 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Scholarship Disbursement Demo (Rinkeby Testnet)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body class="container pt-5">
<div class="container-fluid p-5 bg-primary text-white text-center">
<!--Landing Page-->
<h1>Scholarship Disbursement Landing Page <br> (Rinkeby Testnet)</h1>
<p>This is the solidity scholarship disbursement demo page on Rinkeby Testnet.</p>
</div>
<br>
<!--3 buttons to bring user to different page as if different personnel-->
<div class="d-grid gap-3">
<a href="student.html" type="button" class="btn btn-dark btn-block">Student Page</a>
<a href="provider.html" type="button" class="btn btn-dark btn-block">Scholarship Provider Page</a>
<a href="staff.html" type="button" class="btn btn-dark btn-block">Staff Page</a>
</div>
</body>
</html>