aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/activation_complete.html
blob: fb03a7ea04833e9b0c37dbbd94949d7c0e58b61b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends 'base.html' %}
{% load staticfiles %}
{% load url from future %}
{% load bootstrap3 %}

{# step 4. activation complete #}

{% block title %}
成功激活 | 2014 SKA Summer School
{% endblock %}

{% block content %}
  <div class="container">
    <h2>成功激活</h2>
    <p class="lead">您已成功激活账户。</p>

    <br>
    {% if user.is_authenticated %}
    <p><a href="{% url 'profile' %}" class="btn btn-primary">进入个人主页</a></p>
    {% else %}
    <p><a href="{% url 'login' %}" class="btn btn-primary">登录</a></p>
    {% endif %}
  </div>
{% endblock %}

{# vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #}