-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathindex.html
33 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title>CSS/HTML Workshop with Drivy</title>
</head>
<body>
<div id="car">
<input class="model" type="text" placeholder="Car model"/>
<input class="price-by-day" type="number" placeholder="Price by day"/>
<input class="price-by-km" type="number" placeholder="Price by km"/>
</div>
<div id="rental">
<input class="begin" type="date" placeholder="Rental begin date"/>
<input class="end" type="date" placeholder="Rental end date"/>
<input class="distance" type="number" placeholder="Distance in km"/>
<input class="option" type="checkbox" placeholder="Deductible option"/>
</div>
<button id="compute">Compute</button>
<div id="actors"></div>
<script id="template" type="x-tmpl-mustache">
{{#actors}}
<div class="actor">
<span>{{who}}</span>
<span>{{type}}</span>
<span>{{amount}}</span>
</div>
{{/actors}}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.2.1/mustache.min.js"></script>
<script src="drivy.js"></script>
<script src="index.js"></script>
</body>
</html>