- 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.
This commit is contained in:
Ty Clifford
2026-06-10 16:11:29 -04:00
parent 16235369cb
commit 34ca1be9b7
35 changed files with 554 additions and 134 deletions
+2 -3
View File
@@ -9,7 +9,7 @@
<span>Your staff account uses the same secure sign-in.</span>
</div>
</div>
<form class="auth-card form-stack" action="/login" method="post">
<form class="auth-card form-stack" action="<?= e(url('/login')) ?>" method="post">
<?= csrf_field() ?>
<div>
<span class="eyebrow">Account access</span>
@@ -29,8 +29,7 @@
</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="/register">Create an account</a></p>
<p class="auth-switch">New here? <a href="<?= e(url('/register')) ?>">Create an account</a></p>
</form>
</div>
</section>
+2 -2
View File
@@ -10,7 +10,7 @@
<li>Your payment details are handled by Square, not stored here</li>
</ul>
</div>
<form class="auth-card form-stack" action="/register" method="post">
<form class="auth-card form-stack" action="<?= e(url('/register')) ?>" method="post">
<?= csrf_field() ?>
<div>
<span class="eyebrow">Customer account</span>
@@ -55,7 +55,7 @@
</label>
<div class="notice">Creating an account opts you into occasional Fat Bottom Grille news. You can opt out from any email or My Account.</div>
<button class="button button-large button-block" type="submit">Create My Account</button>
<p class="auth-switch">Already have an account? <a href="/login">Sign in</a></p>
<p class="auth-switch">Already have an account? <a href="<?= e(url('/login')) ?>">Sign in</a></p>
</form>
</div>
</section>
+2 -3
View File
@@ -1,6 +1,6 @@
<section class="auth-section section">
<div class="container narrow-container">
<form class="auth-card form-stack verify-card" action="/verify" method="post">
<form class="auth-card form-stack verify-card" action="<?= e(url('/verify')) ?>" method="post">
<?= csrf_field() ?>
<div class="verification-icon">6</div>
<div>
@@ -12,8 +12,7 @@
<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="/login">Start over</a>
<a class="text-link text-center" href="<?= e(url('/login')) ?>">Start over</a>
</form>
</div>
</section>