haikal/templates/account/confirm_login_code..html
Marwan Alwali 1dc058396c update
2024-12-25 20:32:55 +03:00

19 lines
743 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}Confirm Login Code{% endblock %}
{% block content %}
<div class="container">
<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 didnt receive a code, <a href="{% url 'account_resend_login_code' %}">click here</a> to resend it.</p>
</div>
{% endblock %}