diff options
| author | Rene Ae <aehtyb@gmail.com> | 2015-11-23 02:59:37 -0600 |
|---|---|---|
| committer | Rene Ae <aehtyb@gmail.com> | 2015-11-23 03:00:04 -0600 |
| commit | 51b43d22b136287ed420e4ed2c5495fb3fdf6ea5 (patch) | |
| tree | 2d0dbf5e5f316d27b682150b66a26118450f143c | |
| parent | 6aaefacc12a40c43c405c56ff8542b0641610d92 (diff) | |
checkboxes on shipping
| -rw-r--r-- | StoneIsland/www/index.html | 35 |
1 files changed, 23 insertions, 12 deletions
diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html index 2d34f6ef..cc7ee249 100644 --- a/StoneIsland/www/index.html +++ b/StoneIsland/www/index.html @@ -599,18 +599,29 @@ </div> <h3>SHIPPING METHOD</h3> - - <div class="checkbox"> - <div class="box"></div> - <b>STANDARD $10</b> - (DELIVERY IN 5-8 WORKING DAYS) - </div> - - <div class="checkbox"> - <div class="box"></div> - <b>EXPRESS $20</b> - (DELIVERY IN 2-4 WORKING DAYS) - </div> + + <form> + <div class="checkbox-container"> + <div class="checkbox-row"> + <div class="checkbox-toggle"> + <input id="express-shipping" type="checkbox" name="express-shipping" value="true" required> + <label for="express-shipping"></label> + </div> + <label class="checkbox-caption" for="express-shipping"> + fast + </label> + </div> + <div class="checkbox-row"> + <div class="checkbox-toggle"> + <input type="checkbox" id="standard-shipping" name="standard-shipping" value="true" required> + <label for="standard-shipping"></label> + </div> + <label class="checkbox-caption" for="standard-shipping"> + slow + </label> + </div> + </div> + </form> </div> </div> |
