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 */
.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;

View File

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