diff options
| author | Rene Ae <aehtyb@gmail.com> | 2015-11-22 18:20:00 -0600 |
|---|---|---|
| committer | Rene Ae <aehtyb@gmail.com> | 2015-11-22 18:20:00 -0600 |
| commit | f55411cad3c3ad64ca2cda33834e85f7043fa98c (patch) | |
| tree | 081ca394ec13b99890e3e4a16acaff79f20bddcc | |
| parent | fa9d1c62c8cc4b39caee69b1ba31401f0d4aac66 (diff) | |
number fields on.focus
| -rw-r--r-- | StoneIsland/www/index.html | 12 |
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> |
