18 lines
627 B
HTML
18 lines
627 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Confirm Email Verification Code{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h2>Confirm Your Email</h2>
|
|
<p>Please enter the verification code sent to your email.</p>
|
|
<form method="post" action="{% url 'account_confirm_email' %}">
|
|
{% csrf_token %}
|
|
<div class="mb-3">
|
|
<label for="id_code" class="form-label">Verification Code</label>
|
|
<input type="text" id="id_code" name="code" class="form-control">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Verify</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |