Files
Code_of_Conquest_Bright_Dawn/app/templates/main/dashboard.html

21 lines
490 B
HTML

{% extends "bases/main_base.html" %}
{% block title %}Admin Panel — Dashboard{% endblock %}
{% block body %}
<div class="container-fluid vh-100">
<div class="row justify-content-center align-items-center vh-100">
<div class="col-12">
<div class="text-center">
<h1 class="mb-0">
Code of Conquest Dashboard
</h1>
<p class="mb-0">
{{jwt_info}}
{{profile}}
</p>
</div>
</div>
</div>
</div>
{% endblock %}