important

This commit is contained in:
Thomas G 2022-07-19 20:44:54 +10:00
parent bcb6996262
commit 7edaaf831e
3 changed files with 6 additions and 0 deletions

View File

@ -119,6 +119,10 @@ top: 11px;
color: black;
}
.important {
color: red;
font-weight: bold;
}
#yes,
#no {
width: 50%;

View File

@ -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>

View File

@ -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>