snipt/templates/registration/registration_complete.html

14 lines
429 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">
2016-11-01 12:29:47 -07:00
Signup complete! You're now logged in. Go <a href="/login-redirect/">home</a>, perhaps?
2012-02-12 21:42:25 -08:00
</div>
</div>
2012-02-12 17:17:17 -08:00
{% endblock %}