16 lines
274 B
HTML
Executable File
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 %}
|