-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
105 lines (100 loc) · 4.13 KB
/
options.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!--
YASB - Yet Another Shoe Bot
Copyright (c) 2014-2016 Daniel Escobedo.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Yet Another Shoe Bot: Settings</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<link rel="stylesheet" href="css/options.css">
</head>
<body>
<header>
<h1 class="header center blue-text">Yet Another Shoe Bot</h1>
</header>
<main class="container">
<div class="row center">
<img class="responsive-img" src="img/yasb-128.png">
</div>
<div class="row center">
<h5 class="header col s12 offset-m1 m10 offset-l2 l8 light description"></h5>
</div>
<div class="row">
<div class="input-field col s12 offset-m2 m8 offset-l3 l6">
<select id="shoe-size">
<option value="" disabled selected>Select Your Size</option>
<option value="03.5">3.5</option>
<option value="04.0">4.0</option>
<option value="04.5">4.5</option>
<option value="05.0">5.0</option>
<option value="05.5">5.5</option>
<option value="06.0">6.0</option>
<option value="06.5">6.5</option>
<option value="07.0">7.0</option>
<option value="07.5">7.5</option>
<option value="08.0">8.0</option>
<option value="08.5">8.5</option>
<option value="09.0">9.0</option>
<option value="09.5">9.5</option>
<option value="10.0">10.0</option>
<option value="10.5">10.5</option>
<option value="11.0">11.0</option>
<option value="11.5">11.5</option>
<option value="12.0">12.0</option>
<option value="12.5">12.5</option>
<option value="13.0">13.0</option>
<option value="14.0">14.0</option>
<option value="15.0">15.0</option>
<option value="16.0">16.0</option>
<option value="17.0">17.0</option>
<option value="18.0">18.0</option>
</select>
<label>Shoe Size</label>
</div>
</div>
<div class="row">
<div class="col s12 offset-m2 m8 offset-l3 l6">
<input type="checkbox" id="to-cart" />
<label for="to-cart">Proceed to website's <strong>Cart</strong> after shoe is added to cart.</label>
</div>
</div>
<div class="row">
<div class="col s12 offset-m2 m8 offset-l3 l6">
<input type="checkbox" id="to-checkout" />
<label for="to-checkout">Proceed to website's <strong>CheckOut</strong> after shoe is added to cart.</label>
</div>
</div>
<div class="row center">
<div class="col s12 offset-m2 m8 offset-l3 l6">
<a id="save" class="waves-effect waves-light btn-large">Save</a>
</div>
</div>
</main>
<footer class="page-footer blue darken-1">
<div class="footer-copyright blue darken-2">
<div class="container">
<p><strong>Yet Another Shoe Bot.</strong> Version <span>#</span></p>
</div>
</div>
</footer>
<script src="js/vendor/jquery-2.2.1.min.js"></script>
<script src="js/vendor/materialize.min.js"></script>
<script src="js/options.js"></script>
</body>
</html>