-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvitalizr.html
27 lines (27 loc) · 1.05 KB
/
vitalizr.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
<html>
<head>
<title>Dashboard</title>
<meta charset="utf-8">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.bundle.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="https://unpkg.com/mustache@latest"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.css" />
</head>
<body>
<h1>Vitals for Nick Vaidyanathan</h1>
<section id="weights"></section>
<section id="bpms"></section>
<section id="fats"></section>
<section id="bmis"></section>
<section id="o2s"></section>
<section id="waters"></section>
<section id="temps"></section>
<section id="sugars"></section>
<section id="bps"></section>
<template id="vital-template">
<h2>{{ vital }}</h2>
<canvas width="200" height="200" id="{{ id }}" aria-label="{{ vital }} over time" role="img"><p>{{ vital }} will go here</p></canvas>
</template>
<script src="vitals.js"></script>
</body>
</html>