-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdr-patient-view.html
More file actions
37 lines (32 loc) · 1.57 KB
/
dr-patient-view.html
File metadata and controls
37 lines (32 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" href="https://healthdatasafe.github.io/style-old/images/Favicon/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="https://healthdatasafe.github.io/style-old/hds.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Inter:300,400">
<title>Demo Form - Dr's page</title>
</head>
<script src="https://healthdatasafe.github.io/hds-lib-js/hds-lib.js"></script>
<script type="module" src="dr-patient-view-controler.js"></script>
<body style="background-color:powderblue;">
<div class="container">
<a href="https://www.healthdatasafe.org" target="_hds"><img src="https://healthdatasafe.github.io/style-old/images/Horizontal/hds-logo-hz-1024x400-hz-color.png" alt="Logo" width="300px"></a>
<h1>Demo Form - Dr's Patient View</h1>
<a href="dr.html" class="btn btn-primary" id="home-button">HOME</a>
<div class="card">
<div class="card-patient">
<h2 class="card-title"> Questionnaire: <span id="card-questionnary-details-title"></span></h2>
<h2 class="card-title"> Patient: <span id="patient-label">Patient X</span></h2>
</div>
</div>
<div class="card" id="data-view">
<button id="button-download" class="btn btn-secondary">Download</button>
<table id="patient-data-table" class="table">
</table>
</div>
</div>
</body>
</html>