19 lines
737 B
HTML
19 lines
737 B
HTML
{% extends "base.html" %}
|
||
|
||
{% block title %}Confirm Login Code{% endblock %}
|
||
|
||
{% block content %}
|
||
<div class="row">
|
||
<h2>Confirm Login Code</h2>
|
||
<p>Please enter the login code sent to your email or phone.</p>
|
||
<form method="post" action="{% url 'account_confirm_login_code' %}">
|
||
{% csrf_token %}
|
||
<div class="mb-3">
|
||
<label for="id_code" class="form-label">Login Code</label>
|
||
<input type="text" id="id_code" name="code" class="form-control" required>
|
||
</div>
|
||
<button type="submit" class="btn btn-primary">Verify</button>
|
||
</form>
|
||
<p>If you didn’t receive a code, <a href="{% url 'account_resend_login_code' %}">click here</a> to resend it.</p>
|
||
</div>
|
||
{% endblock %} |