-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (60 loc) · 2.21 KB
/
index.html
File metadata and controls
70 lines (60 loc) · 2.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jonny | Drug Safety App</title>
<link rel="stylesheet" href="css/style.css">
<meta name="description" content="">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<link rel="icon" href="/icon_cannabis.jpg" sizes="any">
<link rel="icon" href="/icon_cannabis.jpg" type="image/svg+xml">
<link rel="apple-touch-icon" href="icon_cannabis.jpg">
<link rel="manifest" href="site.webmanifest">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<header>
<h1>JONNY</h1>
<nav>
<div class="menu-block">
<ul>
<li><a href="#">App</a></li>
<li><a href="about.html">About</a></li>
<li><a href="theProblem.html">The Problem</a></li>
</ul>
</div>
</nav>
<h3>Your Drug Safety Companion</h3>
</header>
<div id="timeContainer"><span id="timeSpan">12:00</span></div>
<div id="outputContainer" class="outputContainer"></div>
<form id="drugUseForm">
<label for="name">Your name:</label>
<input type="text" name="name" id="name" required>
<label for="substance">Substance:</label>
<select name="substance" id="substance" required>
<option value="opioids">Opioids</option>
<option value="cannabis">Cannabis</option>
<option value="amphetamine">Amphetamines</option>
<!-- Add more substances as needed -->
</select>
<label for="accessToNaloxone">Access to Naloxone:</label>
<select name="hasNaloxone" id="hasNaloxone" required>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
<label for="trustedContact">Trusted contact (email):</label>
<input type="text" name="trustedContact" id="trustedContact" required>
<button type="button" id="startButton">Start Session</button>
</form>
<script src="js/substances.js"></script>
<script src="js/app.js"></script>
</body>
</html>