Skip to content

Instantly share code, notes, and snippets.

@vindia
Created January 15, 2014 13:12
Show Gist options
  • Save vindia/8435939 to your computer and use it in GitHub Desktop.
Save vindia/8435939 to your computer and use it in GitHub Desktop.
Trigger numpad on iPhone for password fields (e.g. when you want a user to enter a numeric passcode)
<fieldset>
<legend>Password with pattern <code>\d*</code></legend>
<label>Password: <input type="password" pattern="\d*"></label>
</fieldset>
<fieldset>
<legend>Password with pattern <code>[0-9]*</code></legend>
<label>Password: <input type="password" pattern="[0-9]*"></label>
</fieldset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment