summaryrefslogtreecommitdiff
path: root/StoneIsland/www/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/www/index.html')
-rw-r--r--StoneIsland/www/index.html22
1 files changed, 15 insertions, 7 deletions
diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html
index e300683f..894565f8 100644
--- a/StoneIsland/www/index.html
+++ b/StoneIsland/www/index.html
@@ -110,6 +110,7 @@
</div>
<div id="footer">
+ <!-- 'Cancel' i think needs to go BACK in the navigation.. rather than jumping to the home screen -->
<div class="cancel">CANCEL</div>
<div class="ok">OK</div>
</div>
@@ -308,9 +309,13 @@
<div id="logout">
<div class="scroll">
<h1>LOGOUT</h1>
- <span class="msg">
- You are now logged out.
- </span>
+ <div class="container">
+ <div class="container-fill">
+ <span class="container-message msg">
+ You are now logged out.
+ </span>
+ </div>
+ </div>
</div>
</div>
@@ -324,7 +329,8 @@
<input type="text" name="Surname" placeholder="LAST NAME" required>
<input type="email" name="Email" placeholder="EMAIL ADDRESS" required>
<input type="email" name="ConfirmEmail" placeholder="CONFIRM EMAIL ADDRESS" required>
- <input type="date" name="Birthday" placeholder="BIRTHDAY" required>
+ <!-- NOTE: mm/dd/yyyy is pushed over to the left because of the dropdown arrow -->
+ <input type="text" onfocus="(this.type='date')" name="Birthday" placeholder="BIRTHDAY (MM/DD/YYYY)" required>
<div class="select-wrapper">
<span>GENDER</span>
@@ -651,10 +657,12 @@
<script type="text/html" id="creditcard_template">
<input type="text" name="Number" placeholder="CREDIT CARD NUMBER" required>
<div class="half-input">
- <input type="number" name="ExpirationMonth" placeholder="EXPIRATION MONTH" required>
- <input type="number" name="ExpirationYear" placeholder="EXPIRATION YEAR" required>
- <input type="number" name="CVV" placeholder="SECURITY CODE" required>
+ <!-- NOTE text shifted to the left because of dropdown arrow -->
+ <input type="text" onfocus="(this.type='number')" name="ExpirationMonth" placeholder="EXPIRATION MONTH" required>
+ <input type="text" onfocus="(this.type='number')" name="ExpirationYear" placeholder="EXPIRATION YEAR" required>
</div>
+ <!-- NOTE text shifted to the left because of dropdown arrow -->
+ <input type="text" onfocus="(this.type='number')" name="CVV" placeholder="SECURITY CODE" required>
<span class="address"></span>
</script>