Commit af6b31b344b99d1854281eb6ba5a773e98d8a694
1 parent
6546c2f669
Exists in
master
se colocó el mensaje en rojo cuando ingresa datos invalidos en el login
Showing
1 changed file
with
1 additions
and
2 deletions
Show diff stats
app/Resources/views/security/login.html.twig
... | ... | @@ -32,7 +32,6 @@ |
32 | 32 | |
33 | 33 | {% endblock %} |
34 | 34 | |
35 | - | |
36 | 35 | <div class="content-wrapper"> |
37 | 36 | <div class="container"> |
38 | 37 | <div class="row"> |
... | ... | @@ -51,7 +50,7 @@ |
51 | 50 | |
52 | 51 | <div class="col-md-8"> |
53 | 52 | {% if error %} |
54 | - <div>{{ error.messageKey|trans(error.messageData, 'security') }}</div> | |
53 | + <div class="alert alert-danger">{{ error.messageKey|trans(error.messageData, 'security') }}</div> | |
55 | 54 | {% endif %} |
56 | 55 | <form action="{{ path('login') }}" method="post" role="form"> |
57 | 56 | <div class="form-group"> | ... | ... |