Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions public/css/auth.css
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,21 @@
font-size: 1.35rem;
}
}
/* ─── Back To Home Button ─── */
.back-home-btn {
display: inline-block;
margin-bottom: 16px;
color: var(--text-secondary);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: all var(--duration-fast) var(--ease-out);
}

.back-home-btn:hover {
color: var(--accent-light);
transform: translateX(-2px);
}

/* ─── Password Strength Indicator ─── */
.strength-bar {
Expand Down
3 changes: 3 additions & 0 deletions public/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
<div class="auth-page">
<div class="auth-card">
<div class="auth-header">
<a href="/" class="back-home-btn">
← Back to Home
</a>
<a href="/" class="auth-logo">
<div class="logo-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
Expand Down
7 changes: 6 additions & 1 deletion public/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@
<div class="auth-page">
<div class="auth-card">
<div class="auth-header">
<a href="/" class="auth-logo">

<a href="/" class="back-home-btn">
← Back to Home
</a>

<a href="/" class="auth-logo">
<div class="logo-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round"
stroke-linejoin="round">
Expand Down