-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2f5230
commit 2ad1b59
Showing
4 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% extends "base.html" %} | ||
{% load static %} | ||
{% load i18n %} | ||
|
||
{% block title %}{% trans "Activated" %}{% endblock %} | ||
|
||
{% block content %} | ||
<div class="container"> | ||
<h1>Account Activated</h1> | ||
<p>Your account has been successfully activated. You can now log in using your credentials.</p> | ||
<a href="{% url 'accounts:login' %}">Login</a> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{% extends "base.html" %} | ||
{% load static %} | ||
{% load i18n %} | ||
|
||
{% block title %}{% trans "Sign Up" %}{% endblock %} | ||
|
||
{% block content %} | ||
<div class="container"> | ||
<div class="section mt-3 mb-3"> | ||
<div class="card body-card"> | ||
<div class="user-account-body"> | ||
<h2>Activation Invalid</h2> | ||
<p>Sorry, but the activation link you used is invalid or has expired.</p> | ||
<p>Please request a new activation link or contact support for further assistance.</p> | ||
<a href="{% url 'accounts:accounts_register' %}">Register</a> | <a href="{% url 'accounts:login' %}">Login</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{% extends "base.html" %} | ||
{% load static %} | ||
{% load i18n %} | ||
|
||
{% block title %}{% trans "Activation Email Sent" %}{% endblock %} | ||
|
||
{% block content %} | ||
<div class="container"> | ||
<div class="section mt-3 mb-3"> | ||
<div class="card body-card"> | ||
<div class="user-account-body"> | ||
<h2>Activation Email Sent</h2> | ||
<p>Thank you for registering. An activation email has been sent to your email address.</p> | ||
<p>Please check your email and click on the activation link to activate your account.</p> | ||
<p>If you did not receive the email, please check your spam folder or | ||
<a href="{% url 'accounts:resend_activation' %}">resend the activation email</a>.</p> | ||
<a href="{% url 'accounts:login' %}">Login</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |