Initial commit
[app-web-oof.git] / tmpl / continue.html
1 <!DOCTYPE html>
2 <meta charset="utf-8">
3 <link rel="stylesheet" href="/static/style.css">
4 <title>Order details</title>
5
6 <h1 id="title">ledparts4you</h1>
7
8 <ul id="notes"><li>Note</ul>
9
10 <h2>Your order</h2>
11 <form action="/order" method="POST">
12 <table id="order">
13 <thead><tr><th>Item<th>Quantity<th>Price</thead>
14 <tbody><tr><td class="item"><a href="#" class="title"></a><br><span class="subtitle"></span><td class="quantity"><td class="price"></tbody>
15 </table>
16
17 <h2>Totals</h2>
18 <table id="totals">
19 <tbody><tr><td>Subtotal<td id="subtotal">
20 <tr id="discount_tr"><td>Discount<td id="discount">
21 <tr><td>Postage and packaging<td id="postage">
22 <tr><td><strong>Total</strong><td id="total"></tbody>
23 </table>
24
25 <h2>Your details</h2>
26 <label>First name<br> <input name="first_name" autocomplete="given-name" type="text" maxlength="20" required></label><br>
27 <label>Last name<br> <input name="last_name" autocomplete="family-name" type="text" maxlength="20" required></label><br>
28 <label>Email address<br><input name="email" autocomplete="email" type="email" maxlength="80" required></label><br>
29 <label>Phone number <em>(optional)</em><br><input name="phone" autocomplete="tel" type="tel" maxlength="20"></label><br>
30 <label>Postcode<br> <input name="postcode" autocomplete="postal-code" type="text" maxlength="10" required></label><br>
31 <label>Address line 1<br><input name="address1" autocomplete="address-line1" type="text" maxlength="32" required></label><br>
32 <label>Address line 2 <em>(optional)</em><br><input name="address2" autocomplete="address-line2" type="text" maxlength="32"></label><br>
33 <label>Address line 3 <em>(optional)</em><br><input name="address3" autocomplete="address-line3" type="text" maxlength="32"></label><br>
34 <label>Address line 4 <em>(optional)</em><br><input name="address4" type="text" maxlength="32"></label><br>
35 <label>Safe place <em>(optional)</em><br><input name="safe_place" type="text" maxlength="32"></label><br>
36 <label>Delivery instructions <em>(optional)</em><br><input name="instructions" type="text" maxlength="32"></label><br>
37
38 <input type="hidden" name="discount">
39 <input type="hidden" name="products">
40 <input type="hidden" name="total">
41 <input type="submit" value="Place order" id="place_order">
42 </form>
This page took 0.022656 seconds and 4 git commands to generate.