Files
B42/at_django_boilerplate/accounts/templates/registration/verify_email.html
2026-01-07 12:09:20 +05:30

16 lines
274 B
HTML
Executable File

{% extends 'public_base.html' %}
{% block title %}
Verify
{% endblock %}
{% block content %}
<h1>You need to verify your email</h1>
<form method="post">
{% csrf_token %}
<input class="btn btn-primary max-btn" type="submit" value="Verify">
</form>
{% endblock %}