A compact reset form that confirms the recovery channel before sending instructions.
HTML
<form class="reset-channel">
<span class="reset-channel__label">Send reset link to</span>
<strong class="reset-channel__value">v@company.com</strong>
<button type="submit">Send Link</button>
</form>CSS
.reset-channel {
width: 200px;
padding: 0.85rem;
border-radius: 18px;
background: #ffffff;
display: grid;
gap: 0.35rem;
text-align: center;
box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}
.reset-channel__label {
font-size: 11px;
color: #6b7280;
}
.reset-channel__value {
font-size: 13px;
color: #111827;
}
.reset-channel button {
margin-top: 0.25rem;
padding: 0.45rem;
border-radius: 999px;
border: none;
background: #6366f1;
color: #ffffff;
font-size: 12px;
}
@media (prefers-color-scheme: dark) {
.reset-channel {
background: #020617;
}
.reset-channel__label {
color: #9ca3af;
}
.reset-channel__value {
color: #e5e7eb;
}
}Notes
- Channel-first confirmation
- Reduces delivery confusion
- Suitable for enterprise flows
Preview styles shown. Production customization recommended.
Browse More UI Components
Explore hundreds of reusable HTML & CSS UI components built for modern web projects.
Discover buttons, cards, loaders, animations, layouts, and more all with live previews and clean, copy-paste code.
