number verify

This commit is contained in:
Russell Ballestrini 2024-12-28 15:10:27 -05:00
parent db81a7aa8e
commit 025bd0645f

View file

@ -3,7 +3,7 @@
<h1>Enter 6-digit code</h1>
<form method="POST">
<label for="code">Code:</label>
<input type="text" name="code" required>
<input type="text" name="code" id="code" required pattern="\d{6}" minlength="6" maxlength="6" inputmode="numeric">
<button type="submit">Verify</button>
</form>
{% endblock %}