aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/templates/registration/activation_complete.html
blob: 3400219b2145ac7d677aed6f12611545bcf46179 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'dispatch/base.html' %}

{% block title %}Register{% endblock %}

{% block content %}
<div class="row">
    <div class="col s12">
      <p>
        Your Account activation was successful!
        <br>
        You will be redirected to the sign in page momentarily, if not <a href="{% url 'login' %}">click here</a>
      </p>
    </div>
</div> 

<script>
setTimeout(function () {
   window.location.href = "/login";
}, 2000);
</script>

{% endblock %}