summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--StoneIsland/www/index.html12
1 files changed, 8 insertions, 4 deletions
diff --git a/StoneIsland/www/index.html b/StoneIsland/www/index.html
index e300683f..c67fcdbb 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>
@@ -324,7 +325,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 +653,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>