17 lines
394 B
HTML
17 lines
394 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block media %}
|
||
|
<style type="text/css">
|
||
|
.errorlist {
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
|
</style>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<form action="" method="post" class="form-area">{% csrf_token %}
|
||
|
<table border="0">{{ form.as_table() }}</table>
|
||
|
<hr>
|
||
|
<button style="float:right;" type="submit">{{ _('Verify Email') }}</button>
|
||
|
</form>
|
||
|
{% endblock %}
|