blob: 098899558000f4495f8e29a0e371d473305ce199 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% load static %}
{% block content %}
<div class="row justify-content-center my-5">
<div class="col-lg-12">
<h2 class="display-4 font-weight-bolder my-3">
Success!
</h2>
<div>
<p class="display-6 mb-4" style="color: darkgray;">
Just wait will you. You'll here from us next year.
</p>
</div>
</div>
</div>
{% endblock content %}
|