diff --git a/.gitignore b/.gitignore index aae18b92..d1f00097 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ **/config.* **/*.md +**/custom.css # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/README.md b/README.md index d1f63bfc..ecf66a9b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,9 @@ La gestion de l'authentification est sans mot de passe et fonctionne avec des li ## Configuration * `backend/config/config.py` + * `front-vite/.env` * `front-vite/public/config/config.js` + * `front-vite/public/css/custom.css` * `front-vite/public/page_accueil.md` * `front-vite/public/page_info_admin.md` * `front-vite/public/page_reservation.md` diff --git a/backend/core/routes.py b/backend/core/routes.py index 69ecb020..1de757a5 100644 --- a/backend/core/routes.py +++ b/backend/core/routes.py @@ -493,7 +493,7 @@ def send_login_email(): db.session.commit() send_email( - get_mail_subject("Lien de connexion sur site de réservation du PNG"), + get_mail_subject("Lien de connexion au site de réservation des animations"), recipients=[email], html=render_template("login_mail.html", login_link=get_login_link(token.token)), ) diff --git a/front-vite/.env.sample b/front-vite/.env.sample new file mode 100644 index 00000000..ad7798c8 --- /dev/null +++ b/front-vite/.env.sample @@ -0,0 +1 @@ +VITE_APP_TITLE=Réservation animations \ No newline at end of file diff --git a/front-vite/index.html b/front-vite/index.html index c37c1398..c78c5392 100644 --- a/front-vite/index.html +++ b/front-vite/index.html @@ -1,10 +1,10 @@ - + - Vite App + %VITE_APP_TITLE%
diff --git a/front-vite/public/css/custom.css.sample b/front-vite/public/css/custom.css.sample new file mode 100644 index 00000000..e69de29b diff --git a/front-vite/public/page_reservation.md b/front-vite/public/page_reservation.md deleted file mode 100644 index 803fe27a..00000000 --- a/front-vite/public/page_reservation.md +++ /dev/null @@ -1,6 +0,0 @@ -Voici le listing de vos réservations. - - -Si vous avez besoin de modifier une réservation au niveau du nombre d'inscrit, -merci de prendre contact auprès du parc au numéro xx xx xx xx xx. - diff --git a/front-vite/src/App.vue b/front-vite/src/App.vue index 61aec05e..6e8c27bf 100644 --- a/front-vite/src/App.vue +++ b/front-vite/src/App.vue @@ -1,5 +1,5 @@