-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexNL.html
More file actions
43 lines (38 loc) · 1.5 KB
/
indexNL.html
File metadata and controls
43 lines (38 loc) · 1.5 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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vitalink CarePlan (NL)</title>
<link rel="stylesheet" href="styles.css" />
<script src="node_modules/@smals-belgium-shared/vitalink-webcomponents/VitalinkCarePlanTable/0.0.11/main.js"></script>
</head>
<body>
<a href="index.html" class="back-button">Back to home</a>
<main class="page">
<h1>Vitalink CarePlan webcomponent (Nederlands)</h1>
<form id="careplan-form" class="parameter-form">
<label for="auth-token">Auth token</label>
<input type="text" id="auth-token" placeholder="Bearer token" required />
<label for="patient-pseudonym">Patient pseudonym</label>
<input type="text" id="patient-pseudonym" placeholder="Pseudo ID" required />
<label for="security-label">Security label (optional)</label>
<input
type="text"
id="security-label"
placeholder="https://www.apps.vitalink-services.be|PUBLIC_HEALTH"
value="https://www.apps.vitalink-services.be|PUBLIC_HEALTH"
/>
<button type="submit">Load CarePlan table</button>
</form>
<vitalink-care-plan-table id="careplan-table" language="nl"></vitalink-care-plan-table>
</main>
<script src="webcomponent-pages.js"></script>
<script>
setupCarePlanPage({
formId: "careplan-form",
tableId: "careplan-table",
});
</script>
</body>
</html>