-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatient-profile.html
More file actions
40 lines (37 loc) · 1.68 KB
/
patient-profile.html
File metadata and controls
40 lines (37 loc) · 1.68 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
<!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-profile-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-profile">
<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">Profile</span></h3>
<div class="form-group">
<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>
</div>
</div>
</body>
</html>