Add a block around the message in the spawn_pending page

This makes it easier for users to add or substitute custom messages on
this page.
This commit is contained in:
Robert Schroll
2017-12-28 16:14:35 -08:00
parent 7c64415096
commit 8e3f1f0955

View File

@@ -5,8 +5,10 @@
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="text-center"> <div class="text-center">
{% block message %}
<p>Your server is starting up.</p> <p>Your server is starting up.</p>
<p>You will be redirected automatically when it's ready for you.</p> <p>You will be redirected automatically when it's ready for you.</p>
{% endblock %}
<p><i class="fa fa-spinner fa-pulse fa-fw fa-3x" aria-hidden="true"></i></p> <p><i class="fa fa-spinner fa-pulse fa-fw fa-3x" aria-hidden="true"></i></p>
<a role="button" id="refresh" class="btn btn-lg btn-primary" href="#">refresh</a> <a role="button" id="refresh" class="btn btn-lg btn-primary" href="#">refresh</a>
</div> </div>