add guest auth pages

This commit is contained in:
Yisroel Baum 2026-07-31 09:56:16 +03:00
parent edcaf80b98
commit 02c947708f
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
13 changed files with 1499 additions and 10 deletions

View file

@ -0,0 +1,68 @@
<script setup lang="ts">
defineProps<{
submitLabel: string
}>()
</script>
<template>
<form class="auth-form" @submit.prevent>
<div class="auth-form__fields">
<slot></slot>
</div>
<button type="submit">{{ submitLabel }}</button>
</form>
</template>
<style scoped>
.auth-form {
display: grid;
gap: 1.75rem;
}
.auth-form__fields {
display: grid;
gap: 1.1rem;
}
button {
width: 100%;
min-height: 3.35rem;
padding: 0.9rem 1.25rem;
border: 1px solid #183a31;
border-radius: 0.85rem;
color: #fffdf6;
background: #183a31;
box-shadow: 0 0.6rem 1.2rem rgb(24 58 49 / 16%);
font-size: 0.9rem;
font-weight: 750;
cursor: pointer;
transition:
background-color 160ms ease,
border-color 160ms ease,
transform 160ms ease,
box-shadow 160ms ease;
}
button:hover {
border-color: #285c4e;
background: #285c4e;
box-shadow: 0 0.8rem 1.4rem rgb(24 58 49 / 20%);
transform: translateY(-1px);
}
button:active {
transform: translateY(0);
}
button:focus-visible {
outline: 3px solid rgb(90 136 120 / 38%);
outline-offset: 0.2rem;
}
@media (prefers-reduced-motion: reduce) {
button {
transition: none;
}
}
</style>

View file

@ -0,0 +1,426 @@
<script setup lang="ts">
import BrandWordmark from '@/components/BrandWordmark.vue'
defineProps<{
eyebrow: string
title: string
description: string
}>()
</script>
<template>
<main class="auth-page">
<section class="story-panel" aria-label="About Attainly">
<div class="story-panel__glow story-panel__glow--top" aria-hidden="true"></div>
<div class="story-panel__glow story-panel__glow--bottom" aria-hidden="true"></div>
<div class="story-panel__content">
<BrandWordmark class="story-panel__wordmark" theme="light" />
<div class="story-copy">
<p class="story-copy__eyebrow">Progress with purpose</p>
<h2>Big goals,<br />made doable.</h2>
<p>Turn what matters into clear, daily progress, one focused step at a time.</p>
</div>
<div class="progress-card" aria-hidden="true">
<div class="progress-card__header">
<span>Today&apos;s focus</span>
<span class="progress-card__date">Day 12</span>
</div>
<div class="progress-card__track">
<span class="progress-card__line"></span>
<div class="progress-step progress-step--complete">
<span class="progress-step__marker"></span>
<span>
<small>Step 01</small>
Plan the path
</span>
</div>
<div class="progress-step progress-step--current">
<span class="progress-step__marker"></span>
<span>
<small>Step 02</small>
Take the next step
</span>
</div>
<div class="progress-step">
<span class="progress-step__marker"></span>
<span>
<small>Step 03</small>
See how far you&apos;ve come
</span>
</div>
</div>
</div>
</div>
</section>
<section class="form-panel">
<div class="auth-card">
<header class="auth-card__header">
<p class="auth-card__eyebrow">{{ eyebrow }}</p>
<h1>{{ title }}</h1>
<p>{{ description }}</p>
</header>
<slot></slot>
<footer class="auth-card__footer">
<slot name="footer"></slot>
</footer>
</div>
<p class="form-panel__note">A calmer way to keep moving forward.</p>
</section>
</main>
</template>
<style scoped>
.auth-page {
display: grid;
grid-template-columns: minmax(25rem, 0.92fr) minmax(32rem, 1.08fr);
min-height: 100vh;
min-height: 100svh;
}
.story-panel {
position: relative;
display: flex;
min-height: 100%;
overflow: hidden;
color: #f8f5eb;
background: #183a31;
}
.story-panel::after {
position: absolute;
right: -5rem;
bottom: -7rem;
width: 20rem;
height: 20rem;
border: 1px solid rgb(255 255 255 / 12%);
border-radius: 50%;
content: '';
}
.story-panel__glow {
position: absolute;
border-radius: 50%;
filter: blur(1px);
pointer-events: none;
}
.story-panel__glow--top {
top: -10rem;
right: -8rem;
width: 25rem;
height: 25rem;
background: rgb(205 222 121 / 10%);
}
.story-panel__glow--bottom {
bottom: -14rem;
left: -12rem;
width: 30rem;
height: 30rem;
background: rgb(211 142 101 / 13%);
}
.story-panel__content {
position: relative;
z-index: 1;
display: flex;
flex: 1;
flex-direction: column;
width: min(100%, 40rem);
min-height: 100%;
margin: 0 auto;
padding: clamp(2.25rem, 5vw, 4.5rem);
}
.story-panel__wordmark {
align-self: flex-start;
}
.story-copy {
margin: auto 0 clamp(3rem, 8vh, 6.5rem);
}
.story-copy__eyebrow,
.auth-card__eyebrow {
margin: 0 0 1rem;
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.story-copy__eyebrow {
color: #d7e788;
}
.story-copy h2 {
max-width: 9ch;
margin: 0;
font-family: Georgia, 'Times New Roman', serif;
font-size: clamp(3.25rem, 6.3vw, 5.75rem);
font-weight: 500;
line-height: 0.92;
letter-spacing: -0.055em;
}
.story-copy > p:last-child {
max-width: 29rem;
margin: 1.75rem 0 0;
color: rgb(248 245 235 / 72%);
font-size: 1.02rem;
line-height: 1.75;
}
.progress-card {
width: min(100%, 27rem);
padding: 1.4rem;
border: 1px solid rgb(255 255 255 / 12%);
border-radius: 1.4rem;
background: rgb(255 255 255 / 7%);
box-shadow: 0 1.5rem 4rem rgb(3 19 14 / 20%);
backdrop-filter: blur(0.75rem);
}
.progress-card__header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1.25rem;
font-size: 0.8rem;
font-weight: 750;
}
.progress-card__date {
padding: 0.35rem 0.6rem;
border-radius: 2rem;
color: #d7e788;
background: rgb(215 231 136 / 12%);
font-size: 0.66rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.progress-card__track {
position: relative;
display: grid;
gap: 1rem;
}
.progress-card__line {
position: absolute;
top: 1rem;
bottom: 1rem;
left: 0.82rem;
width: 1px;
background: rgb(255 255 255 / 13%);
}
.progress-step {
position: relative;
display: flex;
align-items: center;
gap: 0.85rem;
color: rgb(248 245 235 / 45%);
font-size: 0.78rem;
font-weight: 650;
}
.progress-step small {
display: block;
margin-bottom: 0.15rem;
color: rgb(248 245 235 / 28%);
font-size: 0.58rem;
font-weight: 800;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.progress-step__marker {
z-index: 1;
display: grid;
flex: 0 0 auto;
width: 1.65rem;
height: 1.65rem;
place-items: center;
border: 1px solid rgb(255 255 255 / 18%);
border-radius: 50%;
background: #24483e;
font-size: 0.7rem;
}
.progress-step--complete {
color: rgb(248 245 235 / 65%);
}
.progress-step--complete .progress-step__marker {
border-color: #d7e788;
color: #183a31;
background: #d7e788;
}
.progress-step--current {
color: #fffdf6;
}
.progress-step--current .progress-step__marker {
border: 0.35rem solid #fffdf6;
outline: 2px solid #d7e788;
outline-offset: 0.15rem;
background: #d7e788;
}
.form-panel {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: clamp(2rem, 6vw, 5.5rem);
background:
radial-gradient(circle at 90% 10%, rgb(215 231 136 / 20%), transparent 22rem), #f3f1eb;
}
.auth-card {
width: min(100%, 31rem);
padding: clamp(2rem, 4.5vw, 3.75rem);
border: 1px solid rgb(27 41 36 / 8%);
border-radius: 1.75rem;
background: rgb(255 254 250 / 92%);
box-shadow: 0 1.5rem 4rem rgb(40 54 47 / 10%);
}
.auth-card__header {
margin-bottom: 2rem;
}
.auth-card__eyebrow {
color: #9b5f40;
}
.auth-card__header h1 {
margin: 0;
color: #183029;
font-family: Georgia, 'Times New Roman', serif;
font-size: clamp(2.35rem, 4vw, 3.15rem);
font-weight: 500;
line-height: 1.05;
letter-spacing: -0.045em;
}
.auth-card__header > p:last-child {
margin: 1rem 0 0;
color: #67736e;
font-size: 0.95rem;
line-height: 1.65;
}
.auth-card__footer {
margin-top: 1.75rem;
color: #68736f;
font-size: 0.88rem;
text-align: center;
}
.auth-card__footer :deep(a) {
color: #285c4e;
font-weight: 750;
text-underline-offset: 0.2rem;
}
.auth-card__footer :deep(a:hover) {
color: #173a30;
}
.auth-card__footer :deep(a:focus-visible) {
border-radius: 0.2rem;
outline: 3px solid rgb(90 136 120 / 35%);
outline-offset: 0.2rem;
}
.form-panel__note {
margin: 1.5rem 0 0;
color: #89918e;
font-size: 0.75rem;
letter-spacing: 0.02em;
}
@media (max-width: 56rem) {
.auth-page {
grid-template-columns: 1fr;
}
.story-panel {
min-height: auto;
}
.story-panel__content {
min-height: auto;
padding: 2rem clamp(1.5rem, 6vw, 4rem) 2.5rem;
}
.story-copy {
margin: 3.75rem 0 0;
}
.story-copy h2 {
max-width: none;
font-size: clamp(2.8rem, 10vw, 4.5rem);
}
.story-copy h2 br {
display: none;
}
.story-copy > p:last-child {
max-width: 36rem;
margin-top: 1.15rem;
}
.progress-card {
display: none;
}
.form-panel {
padding: clamp(2rem, 8vw, 4rem) clamp(1.25rem, 6vw, 4rem);
}
}
@media (max-width: 35rem) {
.story-panel__content {
padding: 1.5rem 1.25rem 2rem;
}
.story-copy {
margin-top: 2.75rem;
}
.story-copy > p:last-child {
font-size: 0.92rem;
line-height: 1.6;
}
.form-panel {
justify-content: flex-start;
padding: 0;
background: #fffefa;
}
.auth-card {
width: 100%;
padding: 2.5rem 1.25rem;
border: 0;
border-radius: 0;
box-shadow: none;
}
.form-panel__note {
display: none;
}
}
</style>

View file

@ -0,0 +1,70 @@
<script setup lang="ts">
defineProps<{
id: string
label: string
type: 'email' | 'password' | 'text'
autocomplete: string
placeholder: string
}>()
</script>
<template>
<div class="text-field">
<label :for="id">{{ label }}</label>
<input
:id="id"
:type="type"
:name="id"
:autocomplete="autocomplete"
:placeholder="placeholder"
/>
</div>
</template>
<style scoped>
.text-field {
display: grid;
gap: 0.55rem;
}
label {
color: #293b35;
font-size: 0.78rem;
font-weight: 750;
}
input {
width: 100%;
min-height: 3.2rem;
padding: 0.85rem 1rem;
border: 1px solid #d8dcd7;
border-radius: 0.8rem;
color: #1b2924;
background: #fff;
box-shadow: 0 1px 2px rgb(27 41 36 / 3%);
font-size: 0.92rem;
outline: none;
transition:
border-color 160ms ease,
box-shadow 160ms ease;
}
input::placeholder {
color: #a3aaa6;
}
input:hover {
border-color: #b4bdb8;
}
input:focus {
border-color: #4d7d6d;
box-shadow: 0 0 0 3px rgb(77 125 109 / 16%);
}
@media (prefers-reduced-motion: reduce) {
input {
transition: none;
}
}
</style>

View file

@ -0,0 +1,71 @@
<script setup lang="ts">
defineProps<{
theme: 'dark' | 'light'
}>()
</script>
<template>
<RouterLink class="wordmark" :class="`wordmark--${theme}`" to="/" aria-label="Attainly home">
<span class="wordmark__mark" aria-hidden="true">
<span></span>
</span>
<span>Attainly</span>
</RouterLink>
</template>
<style scoped>
.wordmark {
display: inline-flex;
align-items: center;
gap: 0.75rem;
font-size: 1.25rem;
font-weight: 750;
letter-spacing: -0.02em;
text-decoration: none;
}
.wordmark--light {
color: #fffdf6;
}
.wordmark--dark {
color: #183029;
}
.wordmark:focus-visible {
border-radius: 0.35rem;
outline: 3px solid #d4e58a;
outline-offset: 0.4rem;
}
.wordmark__mark {
position: relative;
display: grid;
width: 2rem;
height: 2rem;
place-items: center;
border: 1px solid currentcolor;
border-radius: 50%;
background: rgb(255 255 255 / 9%);
opacity: 0.95;
}
.wordmark__mark::before,
.wordmark__mark span {
position: absolute;
width: 0.65rem;
height: 0.65rem;
border-radius: 50%;
content: '';
}
.wordmark__mark::before {
background: #c9da73;
transform: translate(-0.22rem, 0.2rem);
}
.wordmark__mark span {
border: 2px solid currentcolor;
transform: translate(0.25rem, -0.25rem);
}
</style>