-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (50 loc) · 1.98 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
54
55
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<h2>Log an issue</h2>
<div class="container">
<div class="formContainer">
<label required>Issue</label>
<select id="issue" list="issues">
<option value="Antisocial behaviour">Antisocial behaviour</options>
<option value="Facility">Facility</options>
<option value="Fire safety">Fire safety</options>
<option value="Illegal activity">Illegal activity</options>
<option value="Noise">Noise</options>
<option value="Other">Other</options>
</select>
<label required>Location</label>
<select id="location" list="locations">
<option value="Podium Garden">Podium Garden</options>
<option value="Estate Roads">Estate Roads</options>
<option value="24 Rifle Street">24 Rifle Street</options>
<option value="Banbury Point">Banbury Point</options>
<option value="Chorley Court">Chorley Court</options>
<option value="Colston House">Colston House</options>
<option value="Lamington Heights">Lamington Heights</options>
<option value="Parkin House">Parkin House</options>
<option value="Other">Other</options>
</select>
<label>Unit number</label>
<input id="unit" type="text" />
<label>Additional comments</label>
<textarea id="comment"></textarea>
</div>
<div class="additionalOptions">
<input type="checkbox" name="respond" id="respond">
<label for="respond">I require a response</label>
</div>
<div class="submit">
<div class="disclaimer">
If you would like to be contacted, please leave your details in additional comments.
</div>
<div>
<button onclick="submitReport()">Submit</button>
</div>
</div>
</body>
</html>