added class for p

This commit is contained in:
DaanoGames
2025-04-15 12:13:12 +02:00
parent 6a8412e9b2
commit eda84d13de
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ Login
<form class="bg-body-tertiary" method="POST"> <form class="bg-body-tertiary" method="POST">
{{ form.hidden_tag() }} {{ form.hidden_tag() }}
{% if feedback %} {% if feedback %}
<p>{{feedback}}</p> <p class="feedback">{{feedback}}</p>
{% endif %} {% endif %}
<div> <div>
{{ form.username.label }} <br> {{ form.username() }} {{ form.username.label }} <br> {{ form.username() }}

View File

@@ -43,7 +43,7 @@ form {
padding-top: 10px; padding-top: 10px;
} }
p { .feedback {
font-size: 16px; font-size: 16px;
color: red; color: red;
} }