From de1d7580a576b067bed6c067a6b3cc2327bf52a8 Mon Sep 17 00:00:00 2001 From: Meewan Date: Fri, 16 Aug 2024 16:26:31 +0200 Subject: [PATCH] add contact form (no link yet) --- static/css/styles.css | 25 +++++++++++++++++++++++++ templates/a-propos/Nous contacter.html | 6 ++++++ 2 files changed, 31 insertions(+) create mode 100644 templates/a-propos/Nous contacter.html diff --git a/static/css/styles.css b/static/css/styles.css index d31777a..a1b784f 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -234,4 +234,29 @@ li .service-logo { min-height:150px; +} + +.form-line>.input, .form-line>.textarea{ + border-color: #aaaaaa; + width:100%; + margin-bottom: 1em; +} + +.form-line>.textarea{ + min-height: 25em; +} + +.form-error{ + width: 100%; + border-radius: 4px; + margin-bottom: 1em; +} + +.form-alert{ + background-color: rgba(255, 0, 0, 0.2); +} + +.contact-form-embed{ + width: 100%; + height: 700px; } \ No newline at end of file diff --git a/templates/a-propos/Nous contacter.html b/templates/a-propos/Nous contacter.html new file mode 100644 index 0000000..8fa76ca --- /dev/null +++ b/templates/a-propos/Nous contacter.html @@ -0,0 +1,6 @@ +{% extends "/meta/master.html" %} + +{% block main %} + + +{% endblock %} \ No newline at end of file