changes html pages

This commit is contained in:
DaanoGames
2025-04-01 12:10:54 +02:00
parent ff3f3319a3
commit c87ed9cbd6
4 changed files with 14 additions and 11 deletions

View File

@@ -10,8 +10,6 @@
<body> <body>
{% block content %} {% block content %}
{% include "navbar_base.html" %} {% include "navbar_base.html" %}
{% block navbar %}
{% endblock %}
{% endblock %} {% endblock %}
</body> </body>
</html> </html>

View File

@@ -3,5 +3,5 @@
{%block title%}Dashboard{%endblock%} {%block title%}Dashboard{%endblock%}
{%block content%} {%block content%}
<p>The dashboard will display here</p>
{%endblock%} {%endblock%}

View File

@@ -0,0 +1,7 @@
{%extends "base_template.html"%}
{%block title%}Login{%endblock%}
{%block content%}
{%endblock%}

View File

@@ -1,7 +1,5 @@
{%block navbar%}
<nav class="navbar navbar-expand-lg bg-body-tertiary" data-bs-theme="dark"> <nav class="navbar navbar-expand-lg bg-body-tertiary" data-bs-theme="dark">
<div class="container-fluid"> <div class="container-fluid">
<a class="navbar-brand" href="\dashboard">Dashboard</a> <a class="navbar-brand" href="\dashboard">Dashboard</a>
</div> </div>
</nav> </nav>
{%endblock%}