-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (46 loc) · 1.37 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
56
{% extends "templates/base.html" %}
{% block content %}
{% include "templates/logoheader.html" %}
<div id="questiondiv">
{% if error_message %}
<div class="alert alert-info">
{{ error_message }}
</div>
{% endif %}
<form action="near" method="get">
<input class="collectionform input-lg" type="text" name="postcode"
placeholder="What's Your Postcode?">
<br>
<br>
<input id="searchbutton" type="submit" class="btn btn-success" value="Find Me A Cleaner">
</form>
<br /><br /><br />
<table id="howtotable">
<tr>
<td style="width:132px;"><span class="glyphicon glyphicon-time"></span><br><br></td>
<td style="width:132px; "><span class="glyphicon glyphicon-home"></span><br><br></td>
<td style="width:132px;"><span class="glyphicon glyphicon-heart"></span><br><br></td>
</tr>
<tr>
<td style="vertical-align: top;"><p>Book free <strong>collection</strong> and delivery</p></td>
<td style="vertical-align: top;"><p>Collection from your <strong>doorstep</strong></p></td>
<td style="vertical-align: top;"><p>Pay the <strong>same prices</strong> as normal!</p></td>
</tr>
</table>
<br>
<br>
<br>
<br>
<br>
{% include "templates/footer.html" %}
</div>
{% endblock %}
{% block endscripts %}
<script>
$(document).ready(function(){
$('.carousel').carousel({
interval: 3000
});
});
</script>
{% endblock %}