Files
benchcoach-django/templates/success.html
2021-11-20 16:02:39 -06:00

17 lines
366 B
HTML

{% extends "base.html" %}
{% block title %} {{ title }}{% endblock %}
{% block content %}
<head>
<meta http-equiv="refresh" content="2;url={{ call_back_url }}" />
</head>
<span class="text-success">Success!</span> <span class="text-muted">Redirecting...</span>
{% for error in errors %}
error
{% endfor %}
{% endblock %}