This commit is contained in:
devdatt 2026-02-21 06:26:13 +05:30
parent d95c9618a7
commit 6202f9fdb8
2 changed files with 27 additions and 6 deletions

View File

@ -781,17 +781,36 @@ include 'static.php';
/* checkbox block */ /* checkbox block */
.wrap .checkbox { .wrap .checkbox {
display: flex; display: grid;
gap: 10px; grid-template-columns: 20px 1fr;
margin-top: 18px; column-gap: 12px;
align-items: flex-start; margin-top: 20px;
align-items: start;
} }
/* checkbox */
.wrap .checkbox input { .wrap .checkbox input {
margin-top: 4px; margin-top: 3px;
width: 18px;
height: 18px;
accent-color: #38bdf8; 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 */ /* links */
.wrap .links { .wrap .links {
margin-top: 14px; margin-top: 14px;

View File

@ -145,7 +145,9 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
<div class="field"> <div class="field">
<label>Confirm New Password</label> <label>Confirm New Password</label>
<input type="password" name="confirm_password"> <div class="pass-wrap">
<input type="password" name="confirm_password">
</div>
</div> </div>
<button type="submit">Update</button> <button type="submit">Update</button>