-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcrime_form.html
More file actions
40 lines (34 loc) · 1.41 KB
/
crime_form.html
File metadata and controls
40 lines (34 loc) · 1.41 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
<div class="container">
<h2>Vertical Crime form</h2>
<form>
<!-- Date input field is missing. Possible solution: http://www.eyecon.ro/bootstrap-datepicker/-->
<div class="form-group">
<label for="sel1">Select the crime that happened:</label>
<select class="form-control" id="sel1">
<option>Theft</option>
<option>Car theft</option>
<option>Rape</option>
<option>Domestic Violence</option>
<option>Gun shots</option>
<option>Fight</option>
<option>Murder</option>
</select>
</div>
<div class="form-group">
<label for="comment">When did it happened?:</label>
<label class="checkbox-inline"><input type="checkbox" value="">Morning</label>
<label class="checkbox-inline"><input type="checkbox" value="">Afternoon</label>
<label class="checkbox-inline"><input type="checkbox" value="">Night</label>
</div>
<div class="form-group">
<label for="comment">Description:</label>
<textarea class="form-control" rows="5" id="comment"></textarea>
</div>
<div class="checkbox">
<label><input type="checkbox"> Remember me</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
<!-- Ordenado, compacto, con las funcionalidades suficientes para probar. Bueno que esté modulado
Cumple muy bien los estándares HTML, indentacion y buen uso de los tags-->