Add bootstrap frontend

This commit is contained in:
Ranga Gonnage
2023-04-27 10:01:35 +02:00
parent 1b45bda8dc
commit f46d3722e4
34 changed files with 20608 additions and 56 deletions

View File

@@ -1,4 +1,26 @@
<title>Holiday Homes</title>
<h1>Welcome to Holiday Homes</h1>
<div><a href="{% url 'profiles_index' %}">Profiles</a></div>
<div><a href="{% url 'lettings_index' %}">Lettings</a></div>
{% extends "base.html" %}
{% block title %}Holiday Homes{% endblock title %}
{% block content %}
<div class="container px-5 py-5 text-center">
<div class="row justify-content-center">
<div class="col-lg-8">
<h1 class="page-header-ui-title mb-3 display-6">Welcome to Holiday Homes</h1>
</div>
</div>
</div>
<div class="container px-5 py-5 text-center">
<div class="justify-content-center">
<a class="btn fw-500 ms-lg-4 btn-primary px-10" href="{% url 'profiles_index' %}">
Profiles
</a>
<a class="btn fw-500 ms-lg-4 btn-primary px-10" href="{% url 'lettings_index' %}">
Lettings
</a>
</div>
</div>
{% endblock %}