Compare commits
No commits in common. "c115fa603c8135d7a66e7fa8c1fa41087472e18d" and "fbe24915fe4e5b6b7a46eacb3e1637a57b7f9208" have entirely different histories.
c115fa603c
...
fbe24915fe
6 changed files with 2 additions and 38 deletions
|
@ -91,7 +91,6 @@ article.message {
|
||||||
color-mix(in hsl, var(--pico-primary-background) 10%, var(--pico-background-color)) 80%,
|
color-mix(in hsl, var(--pico-primary-background) 10%, var(--pico-background-color)) 80%,
|
||||||
var(--pico-background-color));
|
var(--pico-background-color));
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-rows: 1fr min-content;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 4rem;
|
padding: 4rem;
|
||||||
|
|
||||||
|
@ -117,8 +116,3 @@ h6,
|
||||||
i.i {
|
i.i {
|
||||||
margin-right: .5em;
|
margin-right: .5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
|
||||||
text-align: center;
|
|
||||||
font-weight: 350;
|
|
||||||
}
|
|
||||||
|
|
|
@ -68,9 +68,6 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
</main>
|
</main>
|
||||||
<footer class="container">
|
|
||||||
{% include "footer.html" %}
|
|
||||||
</footer>
|
|
||||||
{% endblock body %}
|
{% endblock body %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
© <a href="https://edgarpierre.fr">Edgar P. Burkhart</a> – <a href="{% url "legal" %}">Mentions légales</a>
|
|
|
@ -1,13 +1,10 @@
|
||||||
{% load static %}
|
{% load static %}
|
||||||
<div id="hero">
|
<div id="hero">
|
||||||
<main>
|
<div>
|
||||||
<i class="ri-music-ai-fill big-logo"></i>
|
<i class="ri-music-ai-fill big-logo"></i>
|
||||||
<h1>Musik</h1>
|
<h1>Musik</h1>
|
||||||
<p>
|
<p>
|
||||||
<a href="{% url "login" %}" role="button"><i class="ri-play-fill"></i> Jouer</a>
|
<a href="{% url "login" %}" role="button"><i class="ri-play-fill"></i> Jouer</a>
|
||||||
</p>
|
</p>
|
||||||
</main>
|
</div>
|
||||||
<footer>
|
|
||||||
{% include "footer.html" %}
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
{% extends "base.html" %}
|
|
||||||
{% block content %}
|
|
||||||
<h1>Mentions légales</h1>
|
|
||||||
<h2>Éditeur</h2>
|
|
||||||
<p>
|
|
||||||
Ce site est réalisé et hébergé par <a href="mailto:contact@edgarpierre.fr">Edgar P. Burkhart</a>.
|
|
||||||
</p>
|
|
||||||
<h2>Données Personnelles</h2>
|
|
||||||
<p>
|
|
||||||
Dans le cadre de la création d'un compte, un nom d'utilisateur, une adresse email et un mot de passe sont requis.
|
|
||||||
Ces données sont stockées dans le seul but de permettre la connexion et la réinitialisation du mot de passe de l'utilisateur (dans le cas de l'adresse mail).
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
La connexion à un compte Youtube est utilisée pour permettre la génération automatique de playlists, et sa suppression le cas échéant.
|
|
||||||
Elle n'est pas requise pour l'utilisation de Musik.
|
|
||||||
Youtube est une marque de Google LLC.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
La suppression des données stockée par le service Musik pour son utilisation peut être demandée par email à <a href="mailto:contact@edgarpierre.fr">Edgar P. Burkhart</a>.
|
|
||||||
</p>
|
|
||||||
{% endblock content %}
|
|
|
@ -1,5 +1,4 @@
|
||||||
from django.urls import include, path
|
from django.urls import include, path
|
||||||
from django.views.generic import TemplateView
|
|
||||||
|
|
||||||
from . import views
|
from . import views
|
||||||
|
|
||||||
|
@ -7,5 +6,4 @@ urlpatterns = [
|
||||||
path("", views.HomePageView.as_view(), name="index"),
|
path("", views.HomePageView.as_view(), name="index"),
|
||||||
path("accounts/signup/", views.SignupView.as_view(), name="signup"),
|
path("accounts/signup/", views.SignupView.as_view(), name="signup"),
|
||||||
path("accounts/", include("django.contrib.auth.urls")),
|
path("accounts/", include("django.contrib.auth.urls")),
|
||||||
path("legal/", TemplateView.as_view(template_name="privacy.html"), name="legal"),
|
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue