-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatient-history.html
More file actions
46 lines (42 loc) · 1.9 KB
/
patient-history.html
File metadata and controls
46 lines (42 loc) · 1.9 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
38
39
40
41
42
43
44
45
46
<!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 - Patient's page</title>
</head>
<script src="https://healthdatasafe.github.io/hds-lib-js/hds-lib.js"></script>
<script type="module" src="patient-history-controler.js"></script>
<body>
<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 - Patient's page</h1>
<div class="card">
<div class="card-header">
<div id="card-nav"></div>
</div>
</div>
<div class="card" id="card-content" >
<form id="form-history">
<h2 class="card-title"> Questionnaire: <span id="card-questionnary-details-title"></span></h2>
<h3 class="card-title"> Question set: <span id="card-questionnary-details-question-set">Historical Data</span></h3>
<div class="form-group">
<label for="form-date">Entry date</label>
<input type="date" id="form-date" class="form-control"/>
<div class="input-group" id="inputs-list">
<!-- HERE WILL GO THE INPUTS-->
</div>
</div>
<button type="button" id="submit-button-list" class="btn btn-primary mb-2">Submit</button>
</form>
<hr>
<h3>History:</h3>
<table id="historical-data" class="table"></table>
</div>
</div>
</body>
</html>