Started using Bootstrap for styling, moved app factory, added tests, started work on login and registration templates, and more

This commit is contained in:
2024-05-05 16:15:55 -04:00
parent 5d9ffffb79
commit 4503603915
19 changed files with 327 additions and 86 deletions

View File

@@ -1,19 +1,16 @@
{% extends 'base.html' %}
{% set title %}{{ user.username }} - Dashboard{% endset %}
{% set title %}{{ user.username }} - Account Dashboard{% endset %}
{% block content %}
<h1>Account Overview<h1>
<h1 class="text-center h1">Account Dashboard</h1>
<hr>
<h3>Pets</h3>
{% include 'users/dashboard/pets_overview.html' %}
{% include 'users/dashboard/dogs_overview.html' %}
<hr>
<h3>Booking History</h3>
{% include 'users/dashboard/visits_overview.html' %}
{% endblock %}