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