mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
20 lines
521 B
HTML
20 lines
521 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
{% if account %}
|
|
<p>{% with account.username as username %}
|
|
Thank you for registering!<br />
|
|
From now on, you can login with your username ({{ username }}).<br/>
|
|
<br/>
|
|
<a href="{% url sso.views.index %}">Back</a>
|
|
{% endwith %}
|
|
</p>
|
|
{% else %}
|
|
<p>Either the link was invalid, or you didn't activate your account within {{ expiration_days }} days after the registration. Please register again.</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|