mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 07:51:01 +00:00
Better style for form errors
This commit is contained in:
parent
e22bd7a588
commit
eef9e6b7ea
2 changed files with 12 additions and 5 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
/* color palette: https://coolors.co/23f0c7-ef767a-7765e3-6457a6-ffe347 */
|
||||||
|
|
||||||
@import url('/static/fonts/Route159/Route159.css');
|
@import url('/static/fonts/Route159/Route159.css');
|
||||||
@import url('/static/fonts/Lora/Lora.css');
|
@import url('/static/fonts/Lora/Lora.css');
|
||||||
@import url('/static/fonts/Playfair_Display/PlayfairDisplay.css');
|
@import url('/static/fonts/Playfair_Display/PlayfairDisplay.css');
|
||||||
|
@ -370,6 +372,15 @@ input[type="submit"] { display: block; }
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Errors */
|
||||||
|
|
||||||
|
p.error {
|
||||||
|
color: #ef767a;
|
||||||
|
font-weight: bold;
|
||||||
|
max-width: 40rem;
|
||||||
|
margin: 1em auto;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* == New post ==
|
* == New post ==
|
||||||
*/
|
*/
|
||||||
|
@ -389,10 +400,6 @@ form.new-post textarea {
|
||||||
min-height: 20em;
|
min-height: 20em;
|
||||||
}
|
}
|
||||||
form.new-post input[type="submit"] {
|
form.new-post input[type="submit"] {
|
||||||
/*transition: all 0.2s ease;
|
|
||||||
display: block;
|
|
||||||
margin: 1em auto;*/
|
|
||||||
|
|
||||||
background: #ECECEC;
|
background: #ECECEC;
|
||||||
color: #242424;
|
color: #242424;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>{{ "Create a post" | _ }}</h1>
|
<h1>{{ "Create a post" | _ }}</h1>
|
||||||
<form class="new-post" method="post">
|
<form class="new-post" method="post">
|
||||||
{{ macros::input(name="title", label="Title", errors=errors, form=form) }}
|
{{ macros::input(name="title", label="Title", errors=errors, form=form, props="required") }}
|
||||||
|
|
||||||
{% if errors is defined and errors.content %}
|
{% if errors is defined and errors.content %}
|
||||||
{% for err in errors.content %}
|
{% for err in errors.content %}
|
||||||
|
|
Loading…
Reference in a new issue