update
This commit is contained in:
parent
d95c9618a7
commit
6202f9fdb8
|
|
@ -781,17 +781,36 @@ include 'static.php';
|
|||
|
||||
/* checkbox block */
|
||||
.wrap .checkbox {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-top: 18px;
|
||||
align-items: flex-start;
|
||||
display: grid;
|
||||
grid-template-columns: 20px 1fr;
|
||||
column-gap: 12px;
|
||||
margin-top: 20px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
/* checkbox */
|
||||
.wrap .checkbox input {
|
||||
margin-top: 4px;
|
||||
margin-top: 3px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
accent-color: #38bdf8;
|
||||
}
|
||||
|
||||
/* text block */
|
||||
.wrap .checkbox label {
|
||||
margin: 0;
|
||||
font-weight: 700;
|
||||
line-height: 1.45;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* description under label */
|
||||
.wrap .checkbox .muted {
|
||||
margin-top: 4px;
|
||||
font-size: 13px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
/* links */
|
||||
.wrap .links {
|
||||
margin-top: 14px;
|
||||
|
|
|
|||
|
|
@ -145,8 +145,10 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|||
|
||||
<div class="field">
|
||||
<label>Confirm New Password</label>
|
||||
<div class="pass-wrap">
|
||||
<input type="password" name="confirm_password">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button type="submit">Update</button>
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Reference in New Issue