-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.34 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
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<link href="../css/home.css" rel="stylesheet">
<title>Blood Donation</title>
</head>
<body>
<main class="main">
<div class="container">
<section class="wrapper">
<div class="heading">
<!--<div class="striped">
<span class="striped-line"></span>
</div> -->
</div>
<center><div id="stopwatch" class="text text-large timer-text mb-4">Welcome user</div></center>
<div class="clockButtons">
<button id="user_registration" onclick="window.electron.register()">User Registration</button>
<button id="donate" onclick="window.electron.donate()">Donate Blood</button>
<button id="receive" onclick="window.electron.receive()">Receive Blood</button>
<button id="inventory" onclick="window.electron.inventory()">Blood Inventory</button>
<button id="history" onclick="window.electron.history()">Track Donor History</button>
<button id="feedback" onclick="window.electron.feedback()">Feedback</button>
</div>
</section>
</div>
</main>
</body>
</html>