Files
order/views/auth/verify.php
T
Ty Clifford 34ca1be9b7 - Implemented the dark photo-based theme.
Moved all images to public/assets/images.
Added darkened photography across heroes, specials, menu cards, 
authentication, story, checkout, and footer.
Replaced placeholder branding with the supplied logo.
Preserved configurable menu item images.
Updated desktop and mobile styling for readable cream/gold text.
2026-06-10 16:11:29 -04:00

19 lines
954 B
PHP

<section class="auth-section section">
<div class="container narrow-container">
<form class="auth-card form-stack verify-card" action="<?= e(url('/verify')) ?>" method="post">
<?= csrf_field() ?>
<div class="verification-icon">6</div>
<div>
<span class="eyebrow">One more step</span>
<h1>Check your email</h1>
<p>Enter the six-digit code we sent you. It is valid for 10 minutes.</p>
</div>
<label>Verification code
<input class="code-input" type="text" name="code" required inputmode="numeric" maxlength="6" pattern="[0-9]{6}" autocomplete="one-time-code" autofocus>
</label>
<button class="button button-large button-block" type="submit">Verify & Sign In</button>
<a class="text-link text-center" href="<?= e(url('/login')) ?>">Start over</a>
</form>
</div>
</section>