proxadmin/app/templates/auth/already_confirmed.html
2017-03-09 03:09:49 +02:00

21 lines
571 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" %}
{% import "bootstrap/wtf.html" as wtf %}
{% block title %}Вашият акаунт е вече потвърден.{% endblock %}
{% block page_content %}
<div class="page-header">
<h1>
Здравейте, {{ current_user.email }}!
</h1>
<h3>Вашият акаунт е вече потвърден.</h3>
<p>
Моля напуснете тази страница :)
</p>
<p>
<a href="{{ url_for('vmanager.index') }}">Натиснете тук за изход</a>
</p>
</div>
{% endblock %}