important
This commit is contained in:
parent
bcb6996262
commit
7edaaf831e
|
|
@ -119,6 +119,10 @@ top: 11px;
|
|||
color: black;
|
||||
}
|
||||
|
||||
.important {
|
||||
color: red;
|
||||
font-weight: bold;
|
||||
}
|
||||
#yes,
|
||||
#no {
|
||||
width: 50%;
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@
|
|||
@endif
|
||||
<h3>Password</h3>
|
||||
<input id="password" type="password" name="password" required autocomplete="current-password">
|
||||
<p class="important">Don't forget your password! Passwords are currently non-recoverable.</p>
|
||||
@error('password')
|
||||
<span style="color:red" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@
|
|||
<input id="password" type="password" name="password" required autocomplete="password">
|
||||
<p>Don't reuse passwords, and don't use a simple one!</p>
|
||||
<p>Passwords must be 8 or more characters, with 1 capital letter, 1 symbol and 1 number.</p>
|
||||
<p class="important">Don't forget your password! Passwords are currently non-recoverable.</p>
|
||||
@error('password')
|
||||
<div class="invalid-feedback" style="color:red">
|
||||
<strong>{{ $message }}</strong>
|
||||
|
|
|
|||
Loading…
Reference in New Issue