Skip to content

Email Verification Status

A copy-paste settings & preferences component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.

Settings & PreferencesHTMLCSSany framework
Verifiedon Apr 14, 2026

Copy into your project

HTML
<div class="nuda-verify">
  <div class="nuda-verify__icon" aria-hidden="true">
    <svg viewBox="0 0 20 20" fill="none">
      <path d="m5 10 3 3 7-7" stroke="currentColor" stroke-width="2"
            stroke-linecap="round" stroke-linejoin="round" />
    </svg>
  </div>
  <div class="nuda-verify__info">
    <div class="nuda-verify__email">hello@nudaui.dev</div>
    <div class="nuda-verify__status">
      <span class="nuda-verify__pill">Verified</span>
      <span class="nuda-verify__meta">on Apr 14, 2026</span>
    </div>
  </div>
  <button type="button" class="nuda-verify__btn">Change</button>
</div>
CSS
/* Email Verification Status
   Shows a verified email with status pill and change link.
   Customize: --ok, --row-bg */

.nuda-verify {
  --ok: #22c55e;
  --row-bg: #0c0c10;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--row-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  width: 100%;
  max-width: 480px;
}

.nuda-verify__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--ok);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nuda-verify__icon svg {
  width: 18px;
  height: 18px;
}

.nuda-verify__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.nuda-verify__email {
  color: #fafafa;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nuda-verify__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nuda-verify__pill {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ok);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.nuda-verify__meta {
  color: #63636e;
  font-size: 0.75rem;
}

.nuda-verify__btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fafafa;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4375rem 0.75rem;
  border-radius: 7px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nuda-verify__btn:hover {
  background: #111114;
  border-color: rgba(255, 255, 255, 0.18);
}

.nuda-verify__btn:focus-visible {
  outline: 2px solid #e4ff54;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .nuda-verify__btn {
    transition: none;
  }
}

How to use Email Verification Status

Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.

Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.

More settings & preferences components

← Browse all NudaUI components