feat: add Vue.js frontend with JWT auth, Pinia store, and Docker

This commit is contained in:
Cipher Vance
2025-11-20 19:24:43 -06:00
parent 580a029742
commit 1f2eb1e836
16 changed files with 1623 additions and 75 deletions

View File

@@ -0,0 +1,177 @@
<template>
<div class="password-reset-container">
<div class="password-reset-card">
<h1>Reset Password</h1>
<p class="subtitle">Enter your email to receive a reset link</p>
<form v-if="!resetLinkSent" @submit.prevent="handleRequestReset">
<div class="form-group">
<label for="email">Email</label>
<input
id="email"
v-model="email"
type="email"
placeholder="Enter your email"
required
/>
</div>
<button type="submit" :disabled="auth.loading" class="btn-primary">
{{ auth.loading ? 'Sending...' : 'Send Reset Link' }}
</button>
</form>
<div v-else class="success-section">
<h3>Check your email!</h3>
<p>We've sent a password reset link to {{ email }}</p>
<p class="small-text">Click the link in the email to reset your password</p>
</div>
<div v-if="auth.error" class="error-message">
{{ auth.error }}
</div>
<div class="links">
<RouterLink to="/login">Back to login</RouterLink>
</div>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue'
import { useAuth } from '@/composables/useAuth'
const auth = useAuth()
const email = ref('')
const resetLinkSent = ref(false)
async function handleRequestReset() {
try {
await auth.requestPasswordReset(email.value)
resetLinkSent.value = true
} catch (error) {
console.error('Password reset request failed:', error)
}
}
</script>
<style scoped>
.password-reset-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.password-reset-card {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
width: 100%;
max-width: 400px;
}
h1 {
margin: 0 0 0.5rem 0;
color: #2c3e50;
font-size: 1.8rem;
}
.subtitle {
color: #7f8c8d;
margin-bottom: 1.5rem;
}
.form-group {
margin-bottom: 1rem;
}
label {
display: block;
margin-bottom: 0.5rem;
color: #2c3e50;
font-weight: 500;
}
input {
width: 100%;
padding: 0.75rem;
border: 1px solid #bdc3c7;
border-radius: 4px;
font-size: 1rem;
box-sizing: border-box;
}
input:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.btn-primary {
width: 100%;
padding: 0.75rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s;
}
.btn-primary:hover:not(:disabled) {
transform: translateY(-2px);
}
.btn-primary:disabled {
opacity: 0.7;
cursor: not-allowed;
}
.success-section {
text-align: center;
}
.success-section h3 {
margin: 0 0 0.5rem 0;
color: #27ae60;
}
.success-section p {
margin: 0.5rem 0;
color: #2c3e50;
}
.small-text {
font-size: 0.9rem;
color: #7f8c8d;
}
.error-message {
margin-top: 1rem;
padding: 0.75rem;
background-color: #fee;
color: #c33;
border-radius: 4px;
}
.links {
margin-top: 1.5rem;
text-align: center;
}
.links a {
color: #667eea;
text-decoration: none;
font-weight: 600;
}
.links a:hover {
text-decoration: underline;
}
</style>