puzzle.unturf.com/templates/verify.html.j2

9 lines
318 B
Django/Jinja

{% extends 'base.html.j2' %}
{% block content %}
<h1>Enter 6-digit code</h1>
<form method="POST">
<label for="code">Code:</label>
<input type="text" name="code" id="code" required pattern="\d{6}" minlength="6" maxlength="6" inputmode="numeric">
<button type="submit">Verify</button>
</form>
{% endblock %}