feat: initial commit - Band Management application

This commit is contained in:
2026-01-06 03:11:46 +01:00
commit 34e12e00b3
24543 changed files with 3991790 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
{% extends layout_path %}
{% load static %}
{% load i18n %}
{% block title %}Coming Soon - Pages{% endblock %}
{% block page_css %}
{{ block.super }}
<link rel="stylesheet" href="{% static 'vendor/css/pages/page-misc.css' %}" />
{% endblock page_css %}
{% block content %}
<!-- Coming Soon -->
<div class="container-xxl container-p-y py-4">
<div class="misc-wrapper">
<h4 class="mb-2 mx-2">We are launching soon 🚀</h4>
<p class="mb-6 mx-2">Our website is opening soon. Please register to get notified when it's ready!</p>
<form onsubmit="return false">
<div class="mb-0">
<div class="mb-0 d-flex gap-4">
<input type="text" class="form-control" placeholder="Enter your email" autofocus />
<button type="submit" class="btn btn-primary">Notify</button>
</div>
</div>
</form>
<div class="mt-12">
<img src="{% static 'img/illustrations/page-misc-launching-soon.png' %}" alt="page-misc-launching-soon" width="263" class="img-fluid" />
</div>
</div>
</div>
<div class="container-fluid misc-bg-wrapper">
<img src="{% static 'img/illustrations/bg-shape-image-' %}{{ COOKIES.theme|default:theme }}.png" height="355" alt="page-misc-coming-soon" data-app-light-img="illustrations/bg-shape-image-light.png" data-app-dark-img="illustrations/bg-shape-image-dark.png" />
</div>
<!-- /Coming Soon -->
{% endblock %}

View File

@@ -0,0 +1,31 @@
{% extends layout_path %}
{% load static %}
{% load i18n %}
{% block title %}Error - Pages{% endblock %}
{% block page_css %}
{{ block.super }}
<link rel="stylesheet" href="{% static 'vendor/css/pages/page-misc.css' %}" />
{% endblock page_css %}
{% block content %}
<!-- Error -->
<div class="container-xxl container-p-y">
<div class="misc-wrapper">
<h1 class="mb-2 mx-2" style="line-height: 6rem;font-size: 6rem;">404</h1>
<h4 class="mb-2 mx-2">Page Not Found ⚠️</h4>
<p class="mb-6 mx-2">we couldn't find the page you are looking for</p>
<a href="{% url 'index' %}" class="btn btn-primary mb-10">Back to home</a>
<div class="mt-4">
<img src="{% static 'img/illustrations/page-misc-error.png' %}" alt="page-misc-error" width="225" class="img-fluid">
</div>
</div>
</div>
<div class="container-fluid misc-bg-wrapper">
<img src="{% static 'img/illustrations/bg-shape-image-' %}{{ COOKIES.theme|default:theme }}.png" height="355" alt="page-misc-error" data-app-light-img="illustrations/bg-shape-image-light.png" data-app-dark-img="illustrations/bg-shape-image-dark.png">
</div>
<!-- /Error -->
{% endblock %}

View File

@@ -0,0 +1,30 @@
{% extends layout_path %}
{% load static %}
{% load i18n %}
{% block title %}Not Authorized - Pages{% endblock %}
{% block page_css %}
{{ block.super }}
<link rel="stylesheet" href="{% static 'vendor/css/pages/page-misc.css' %}" />
{% endblock page_css %}
{% block content %}
<!-- Not Authorized -->
<div class="container-xxl container-p-y">
<div class="misc-wrapper">
<h1 class="mb-2 mx-2" style="line-height: 6rem;font-size: 6rem;">401</h1>
<h4 class="mb-2 mx-2">You are not authorized! 🔐</h4>
<p class="mb-6 mx-2">You dont have permission to access this page. Go Home!</p>
<a href="{% url 'index' %}" class="btn btn-primary">Back to home</a>
<div class="mt-12">
<img src="{% static 'img/illustrations/page-misc-you-are-not-authorized.png' %}" alt="page-misc-not-authorized" width="170" class="img-fluid">
</div>
</div>
</div>
<div class="container-fluid misc-bg-wrapper">
<img src="{% static 'img/illustrations/bg-shape-image-' %}{{ COOKIES.theme|default:theme }}.png" height="355" alt="page-misc-not-authorized" data-app-light-img="illustrations/bg-shape-image-light.png" data-app-dark-img="illustrations/bg-shape-image-dark.png">
</div>
<!-- /Not Authorized -->
{% endblock %}

View File

@@ -0,0 +1,29 @@
{% extends layout_path %}
{% load static %}
{% load i18n %}
{% block title %}Under Maintenance - Pages{% endblock %}
{% block page_css %}
{{ block.super }}
<link rel="stylesheet" href="{% static 'vendor/css/pages/page-misc.css' %}" />
{% endblock page_css %}
{% block content %}
<!--Under Maintenance -->
<div class="container-xxl container-p-y">
<div class="misc-wrapper">
<h4 class="mb-2 mx-2">Under Maintenance! 🚧</h4>
<p class="mb-6 mx-2">Sorry for the inconvenience but we're performing some maintenance at the moment</p>
<a href="{% url 'index' %}" class="btn btn-primary">Back to home</a>
<div class="mt-12">
<img src="{% static 'img/illustrations/page-misc-under-maintenance.png' %}" alt="page-misc-under-maintenance" width="550" class="img-fluid" />
</div>
</div>
</div>
<div class="container-fluid misc-bg-wrapper misc-under-maintenance-bg-wrapper">
<img src="{% static 'img/illustrations/bg-shape-image-' %}{{ COOKIES.theme|default:theme }}.png" height="355" alt="page-misc-under-maintenance" data-app-light-img="illustrations/bg-shape-image-light.png" data-app-dark-img="illustrations/bg-shape-image-dark.png" />
</div>
<!-- /Under Maintenance -->
{% endblock %}