feat: ♻️ Redesign password reset page

This commit is contained in:
Jesse Wierzbinski 2024-06-15 20:44:16 -10:00
parent d456c72bc4
commit a2ee954bce
No known key found for this signature in database
3 changed files with 33 additions and 83 deletions

View file

@ -1,23 +0,0 @@
<template>
<div class="flex items-center justify-between">
<label class="block text-sm font-medium leading-6 text-gray-50">{{ label }}</label>
</div>
<div class="mt-2">
<input v-bind="$attrs" :class="['block disabled:opacity-70 disabled:hover:cursor-wait w-full bg-dark-500 rounded-md border-0 py-1.5 text-gray-50 shadow-sm ring-1 ring-inset ring-white/10 placeholder:text-gray-500 focus:ring-2 focus:ring-inset focus:ring-primary-600 sm:text-sm sm:leading-6',
isInvalid && '!ring-red-600 ring-2']">
</div>
</template>
<script setup lang="ts">
import type { InputHTMLAttributes } from "vue";
interface Props extends /* @vue-ignore */ InputHTMLAttributes {
isInvalid?: boolean;
label: string;
}
defineOptions({
inheritAttrs: false,
});
defineProps<Props>();
</script>

View file

@ -3,42 +3,6 @@
<img crossorigin="anonymous" src="https://cdn.lysand.org/logo.webp" alt="Lysand logo" <img crossorigin="anonymous" src="https://cdn.lysand.org/logo.webp" alt="Lysand logo"
class="mx-auto hidden md:inline-block h-20 ring-1 ring-white/20 rounded" /> class="mx-auto hidden md:inline-block h-20 ring-1 ring-white/20 rounded" />
<div v-if="validUrlParameters" class="mx-auto w-full max-w-md"> <div v-if="validUrlParameters" class="mx-auto w-full max-w-md">
<!--
<VeeForm class="flex flex-col gap-y-6" @submit="s => register((s as any))" :validation-schema="schema">
<h1 class="font-bold text-2xl text-gray-50 text-center tracking-tight">Passwords</h1>
<VeeField name="password" as="div" v-slot="{ errorMessage, field }" validate-on-change>
<InputsField>
<InputsLabelAndError>
<InputsLabel for="password">Password</InputsLabel>
<InputsError v-if="errorMessage">{{ errorMessage }}</InputsError>
</InputsLabelAndError>
<InputsPassword id="password" placeholder="hunter2" required v-bind="field"
:disabled="isLoading" :is-invalid="!!errorMessage" />
</InputsField>
</VeeField>
<VeeField name="password-confirm" as="div" v-slot="{ errorMessage, field }" validate-on-change>
<InputsField>
<InputsLabelAndError>
<InputsLabel for="password-confirm">Confirm password</InputsLabel>
<InputsError v-if="errorMessage">{{ errorMessage }}</InputsError>
</InputsLabelAndError>
<InputsPassword id="password-confirm" placeholder="hunter2" required v-bind="field"
:disabled="isLoading" :is-invalid="!!errorMessage" />
</InputsField>
</VeeField>
<p class="text-xs font-semibold text-gray-300">
Passwords are stored securely and hashed. We do not store your password in plain text.
Administrators
cannot see your password.
</p>
<ButtonsPrimary type="submit" class="w-full" :disabled="isLoading">{{ isLoading ? "Registering..." :
"Register" }}</ButtonsPrimary>
</VeeForm>
-->
<VeeForm class="flex flex-col gap-y-6" method="POST" :validation-schema="schema" <VeeForm class="flex flex-col gap-y-6" method="POST" :validation-schema="schema"
:action="`/api/auth/login?redirect_uri=${redirect_uri}&response_type=${response_type}&client_id=${client_id}&scope=${scope}`"> :action="`/api/auth/login?redirect_uri=${redirect_uri}&response_type=${response_type}&client_id=${client_id}&scope=${scope}`">
<h1 class="font-bold text-2xl text-gray-50 text-center tracking-tight">Login to your account</h1> <h1 class="font-bold text-2xl text-gray-50 text-center tracking-tight">Login to your account</h1>

View file

@ -1,36 +1,46 @@
<template> <template>
<div class="flex min-h-screen relative flex-col justify-center py-12 px-8"> <div class="flex min-h-screen relative flex-col gap-10 justify-center py-12 px-8">
<img crossorigin="anonymous" src="https://cdn.lysand.org/logo-long-dark.webp" alt="Lysand logo" <img crossorigin="anonymous" src="https://cdn.lysand.org/logo.webp" alt="Lysand logo"
class="mx-auto h-24 hidden md:block mb-10" /> class="mx-auto hidden md:inline-block h-20 ring-1 ring-white/20 rounded" />
<div v-if="validUrlParameters" <div v-if="validUrlParameters" class="mx-auto w-full max-w-md">
class="sm:mx-auto w-full sm:max-w-md px-10 py-10 rounded md:ring-1 md:ring-white/10">
<div v-if="error" class="ring-1 ring-white/10 rounded p-4 bg-red-500 text-white mb-10"> <div v-if="error" class="ring-1 ring-white/10 rounded p-4 bg-red-500 text-white mb-10">
<h2 class="font-bold text-lg">An error occured</h2> <h2 class="font-bold text-lg">An error occured</h2>
<span class="text-sm">{{ error_description }}</span> <span class="text-sm">{{ error_description }}</span>
</div> </div>
<VeeForm class="space-y-6" method="POST" :validation-schema="schema" action="/api/auth/reset"> <VeeForm class="flex flex-col gap-y-6" method="POST" :validation-schema="schema" action="/api/auth/reset">
<input type="hidden" name="token" :value="token" /> <input type="hidden" name="token" :value="token" />
<h1 class="font-bold text-2xl text-gray-50 text-center tracking-tight">Reset your password</h1> <h1 class="font-bold text-2xl text-gray-50 text-center tracking-tight">Reset your password</h1>
<VeeField name="password" as="div" v-slot="{ errors, field }" validate-on-change> <div v-if="error" class="ring-1 ring-white/10 rounded p-4 bg-red-500 text-white">
<LoginInput label="Password" placeholder="Password here" type="password" <h2 class="font-bold text-lg">An error occured</h2>
autocomplete="current-password" required :is-invalid="errors.length > 0" v-bind="field" /> <span class="text-sm">{{ error_description }}</span>
<VeeErrorMessage name="password" as="p" class="mt-2 text-sm text-red-600" v-slot="{ message }"> </div>
{{ message }}
</VeeErrorMessage> <VeeField name="password" v-slot="{ errorMessage, field }" validate-on-change>
<InputsField>
<InputsLabelAndError>
<InputsLabel for="password">New password</InputsLabel>
<InputsError v-if="errorMessage">{{ errorMessage }}</InputsError>
</InputsLabelAndError>
<InputsPassword id="password" placeholder="hunter2" autocomplete="new-password" required
v-bind="field" :is-invalid="!!errorMessage" :show-strength="true" />
</InputsField>
</VeeField> </VeeField>
<VeeField name="password2" as="div" v-slot="{ errors, field }" validate-on-change> <VeeField name="password-confirm" as="div" v-slot="{ errors, field }" validate-on-change>
<LoginInput label="Confirm password" placeholder="Confirm password" type="password" <InputsField>
autocomplete="current-password" required :is-invalid="errors.length > 0" v-bind="field" /> <InputsLabelAndError>
<VeeErrorMessage name="password2" as="p" class="mt-2 text-sm text-red-600" v-slot="{ message }"> <InputsLabel for="password-confirm">Confirm password</InputsLabel>
{{ message }} <InputsError v-if="errors.length > 0">{{ errors[0] }}</InputsError>
</VeeErrorMessage> </InputsLabelAndError>
<InputsPassword id="password-confirm" placeholder="hunter2" autocomplete="new-password" required
v-bind="field" :is-invalid="errors.length > 0" />
</InputsField>
</VeeField> </VeeField>
<p class="mt-6 text-sm leading-8 font-semibold text-red-300">This will reset your <p class="text-xs font-semibold text-red-300">This will reset your
password. Be sure to put it in a password manager. password. Make sure to put it in a password manager.
</p> </p>
<ButtonsPrimary type="submit" class="w-full">Reset</ButtonsPrimary> <ButtonsPrimary type="submit" class="w-full">Reset</ButtonsPrimary>
@ -63,7 +73,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { toTypedSchema } from "@vee-validate/zod"; import { toTypedSchema } from "@vee-validate/zod";
import { z } from "zod"; import { z } from "zod";
import LoginInput from "../../components/LoginInput.vue";
const identity = useCurrentIdentity(); const identity = useCurrentIdentity();
identity.value = null; identity.value = null;
@ -72,12 +81,12 @@ const schema = toTypedSchema(
z z
.object({ .object({
password: z.string().min(3).max(100), password: z.string().min(3).max(100),
password2: z.string().min(3).max(100), "password-confirm": z.string().min(3).max(100),
}) })
.superRefine((data, ctx) => { .superRefine((data, ctx) => {
if (data.password !== data.password2) { if (data.password !== data["password-confirm"]) {
ctx.addIssue({ ctx.addIssue({
path: [...ctx.path, "password2"], path: [...ctx.path, "password-confirm"],
code: "custom", code: "custom",
message: "Passwords do not match", message: "Passwords do not match",
}); });