snipt/templates/registration/registration_complete.html

14 lines
442 B
HTML
Raw Normal View History

2012-02-12 21:42:25 -08:00
{% extends "registration/registration_base.html" %}
2012-02-12 17:17:17 -08:00
2012-02-12 21:42:25 -08:00
{% block page-title %}Signup complete - {{ block.super }}{% endblock %}
2012-02-12 17:17:17 -08:00
2012-02-12 21:42:25 -08:00
{% block body-class %}{{ block.super }} static{% endblock %}
2012-02-12 17:17:17 -08:00
{% block content %}
2012-02-12 21:42:25 -08:00
<div class="static-box">
<div class="alert alert-info alert-alone">
2013-04-28 17:24:51 -07:00
Signup complete! You're now logged in. Go <a href="/{{ request.user.username }}/">home</a>, perhaps?
2012-02-12 21:42:25 -08:00
</div>
</div>
2012-02-12 17:17:17 -08:00
{% endblock %}