-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblockchain.html
144 lines (121 loc) · 6.39 KB
/
blockchain.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tag -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Connecting css files -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="styles/style1.css">
<link rel="stylesheet" href="styles/style2.css">
<!-- Connecting Js files -->
<script src="scripts/animation.js"></script>
<script src="scripts/main.js"></script>
<!--Title -->
<title>Blockchain</title>
<style>
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-dark bg-dark">
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<span class="navbar-brand h1">Blockchain</span>
<button class="btn btn-primary" onclick="document.getElementById('id01').style.display='block'" style="width:auto;" role="button" ><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-box-arrow-right" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2z"/>
<path fill-rule="evenodd" d="M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z"/>
</svg> Logout</button>
</nav>
<br>
<br>
<br>
<!-- Table -->
<div class="container-fluid bg-light" style="min-height: 100vh">
<div class="container">
<div class="jumbotron mt-4">
<div class="table-responsive">
<table class="table",id="block">
<thead class="thead-dark">
<tr>
<th scope="col">Index</th>
<th scope="col">Name</th>
<th scope="col">Description</th>
<th scope="col">Medical speciality</th>
<th scope="col">Sample name</th>
<th scope="col">Transcription</th>
<th scope="col">Hash</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>John</td>
<td>Consult for laparoscopic gastric bypass</td>
<td>Bariatrics</td>
<td>Laparoscopic Gastric Bypass Consult - 2</td>
<td>He has difficulty climbing stairs, difficulty with airline seats, tying shoes, used to public seating, and lifting objects off the floor</td>
<td>d56fe0cde33ad268ad7ca2a10329bd07d44ac55f94de2d8475e55f8eb998c7a7</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>2-D Echocardiogram</td>
<td>Cardiovascular Pulmonary</td>
<td>2-D Echocardiogram - 1</td>
<td>Left atrial enlargement with left atrial diameter of 4.7 cm. Normal size right and left ventricle. Normal LV systolic function with left ventricular ejection fraction of 51%</td>
<td>03ebc3dfe4793ef377a618f8be14f1301943187945e491abe8585a4d9374b81c</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>Acute Allergic reaction</td>
<td>Allergy/Immunology</td>
<td>Allergy Evaluation Consult</td>
<td>A 34-year-old male presents today self-referred at the recommendation of Emergency Room physicians and his nephrologist to pursue further allergy evaluation and treatment</td>
<td>e695bf6538d2281ca2ebc469a2bb835952b1aef5856ba09f9886082d13b5dc2d</td>
</tr>
</tbody>
</table>
</div>
</div>
<button type="button" class="btn btn-success" onclick="verify()">verify</button>
</div>
</div>
<!-- NavBar -->
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="About.html">About</a>
<a href="Team.html">Team</a>
<a href="Contact.html">Contact</a>
</div>
</div>
<script>
function verify(){
alert("Verified!")
}
</script>
<!-- Logout form -->
<div id="id01" class="modal">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
</div>
<div class="container">
<span type="button" style="text-align: center;"><h4>Are you sure you want to logout?</h4></span>
</div>
<div class="container" >
<button type="button" onclick="location.replace('logout.html')">Logout</button>
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn" style="background-color: red;width: 100%;">Cancel</button>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-dark text-center text-white">
© Made with ♥ by nameit in 2021. All Rights Reserved.
</footer>
</body>
</html>