
Updated some of the values in settings.py and fixed user activation email template. Change-Id: I1eb60b624ad5d6516b7750ddbb90dc0d5087e62a
21 lines
589 B
HTML
21 lines
589 B
HTML
{% extends "base_headless.html" %}
|
|
|
|
{% block title %}<title>dash-stack | Register </title>{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="register-box">
|
|
<div class="register-logo">
|
|
<a href="/"><b> - </b>stack</a>
|
|
</div>
|
|
<div class="login-box-body">
|
|
<p class="lead">
|
|
Thank you for registering a new account with us.
|
|
Please check your email for information.
|
|
</p>
|
|
<a href="/" class="text-center">Let's go back to home page.</a><br />
|
|
<a href="/auth/login/" class="text-center">Take me to login page.</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %} |