13 lines
430 B
HTML
13 lines
430 B
HTML
<!-- templates/loader.html -->
|
|
{% extends 'base.html' %}
|
|
|
|
{% block title %}Loader{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3 style="text-align: center;">Your instance is getting ready. Please wait... </h3>
|
|
<div class="d-flex justify-content-center">
|
|
<div class="spinner-grow" style="width: 3rem; height: 3rem;" role="status">
|
|
<span class="sr-only">Loading...</span>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |