Files
order/views/auth/login.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

36 lines
1.8 KiB
PHP

<section class="auth-section section">
<div class="container auth-grid">
<div class="auth-intro">
<span class="eyebrow">Welcome back</span>
<h1>Your usual is waiting.</h1>
<p>Sign in to check past orders, save your pickup information, and manage restaurant news.</p>
<div class="auth-callout">
<strong>Staff member?</strong>
<span>Your staff account uses the same secure sign-in.</span>
</div>
</div>
<form class="auth-card form-stack" action="<?= e(url('/login')) ?>" method="post">
<?= csrf_field() ?>
<div>
<span class="eyebrow">Account access</span>
<h2>Sign In</h2>
</div>
<label>Email address
<input type="email" name="email" required autocomplete="email" value="<?= e($old['email'] ?? '') ?>">
</label>
<label>Password
<input type="password" name="password" required autocomplete="current-password">
</label>
<div class="honeypot" aria-hidden="true">
<label>Website <input type="text" name="website" tabindex="-1" autocomplete="off"></label>
</div>
<label>Quick check: what is <?= (int) $captcha[0] ?> + <?= (int) $captcha[1] ?>?
<input type="number" name="captcha" required inputmode="numeric" autocomplete="off">
</label>
<button class="button button-large button-block" type="submit">Continue Securely</button>
<p class="form-footnote">We will email a six-digit verification code after your password is accepted.</p>
<p class="auth-switch">New here? <a href="<?= e(url('/register')) ?>">Create an account</a></p>
</form>
</div>
</section>