-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (45 loc) · 1.91 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Carlos Eduardo">
<link rel="stylesheet" type="text/css" href="style.css" >
<title>Biomedic data</title>
</head>
<body>
<header>
<h1>Biomedic data</h1>
</header>
<div>
<form>
<div class="patient_input">
<label for="patient" class="personal_data">Patient:<input type="text" id="patient" required/></label>
<label for="day" class="personal_data">Day:<input type="date" id="day" required/></label>
<label for="time" class="personal_data">Time:<input type="time" id="time" required/></label>
</div>
<p><strong>Data from patient:</strong></p>
<div id="bio_data">
<label for="hr">Heart rate:</label> <br>
<input type="number" id="hr" /> <br>
<label for="spo2">Oxygenation:</label> <br>
<input type="number" id="spo2" /> <br>
<label for="temp">Temperature:</label> <br>
<input type="number" id="temp" /> <br>
<label for="glc">Glucose:</label> <br>
<input type="number" id="glc" /> <br>
<label for="abps">Systolic pressure:</label> <br>
<input type="number" id="abps" /> <br>
<label for="abpd">Diastolic pressure:</label> <br>
<input type="number" id="abpd" /> <br>
</div>
<br>
<label for="symptoms">Symptoms:</label> <br>
<textarea name="textsymptoms" id="symptoms" cols="45" rows="4"></textarea> <br>
<br>
<button type="submit" class="button">Send</button>
</form>
</div>
</body>
</html>