mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
It's less pretty/cool...I may bring it back in future but this'll do for now.
23 lines
609 B
HTML
23 lines
609 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block titleheader %}
|
|
<div class="navbar-header">
|
|
<span class="navbar-brand">RIGS</span>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<div class="modal fade" id="loading-modal" role="dialog">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h2>Please wait</h2>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="spinner-border text-primary" role="status">
|
|
<span class="sr-only">Loading...</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|