- Add .gitea/workflows/ci.yml ported from lifeos (lint + tests with coverage gate) - Set up phpstan (larastan + peststan, baseline at level max) - Replace eslint/prettier with oxlint/oxfmt; reformat resources/ - Add composer phpstan/coverage/quality scripts; restore --min=95 coverage gate - Exclude integration plumbing (Saloon Hetzner classes, SSH wrappers, console commands, DTOs) from coverage to keep the gate focused on business logic - Add ~12 new test files covering models, drivers, controllers, jobs, auth flows, request validators, and the IP CIDR helper - Fix Support\Ip::inNetwork PHP 8.4 TypeError in CIDR mask check - Fix FirewallRule::command comparing the enum-cast type column to a string - Fix Server::network using the wrong foreign key column - Remove unreachable code under abort(403) in RegisteredUserController
90 lines
3.0 KiB
Vue
90 lines
3.0 KiB
Vue
<script setup lang="ts">
|
|
import InputError from "@/components/InputError.vue";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import AuthLayout from "@/layouts/AuthLayout.vue";
|
|
import { Head, useForm } from "@inertiajs/vue3";
|
|
import { LoaderCircle } from "lucide-vue-next";
|
|
|
|
interface Props {
|
|
token: string;
|
|
email: string;
|
|
}
|
|
|
|
const props = defineProps<Props>();
|
|
|
|
const form = useForm({
|
|
token: props.token,
|
|
email: props.email,
|
|
password: "",
|
|
password_confirmation: "",
|
|
});
|
|
|
|
const submit = () => {
|
|
form.post(route("password.store"), {
|
|
onFinish: () => {
|
|
form.reset("password", "password_confirmation");
|
|
},
|
|
});
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<AuthLayout title="Reset password" description="Please enter your new password below">
|
|
<Head title="Reset password" />
|
|
|
|
<form @submit.prevent="submit">
|
|
<div class="grid gap-6">
|
|
<div class="grid gap-2">
|
|
<Label for="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
name="email"
|
|
autocomplete="email"
|
|
v-model="form.email"
|
|
class="mt-1 block w-full"
|
|
readonly
|
|
/>
|
|
<InputError :message="form.errors.email" class="mt-2" />
|
|
</div>
|
|
|
|
<div class="grid gap-2">
|
|
<Label for="password">Password</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
autocomplete="new-password"
|
|
v-model="form.password"
|
|
class="mt-1 block w-full"
|
|
autofocus
|
|
placeholder="Password"
|
|
/>
|
|
<InputError :message="form.errors.password" />
|
|
</div>
|
|
|
|
<div class="grid gap-2">
|
|
<Label for="password_confirmation"> Confirm Password </Label>
|
|
<Input
|
|
id="password_confirmation"
|
|
type="password"
|
|
name="password_confirmation"
|
|
autocomplete="new-password"
|
|
v-model="form.password_confirmation"
|
|
class="mt-1 block w-full"
|
|
placeholder="Confirm password"
|
|
/>
|
|
<InputError :message="form.errors.password_confirmation" />
|
|
</div>
|
|
|
|
<Button type="submit" class="mt-4 w-full" :disabled="form.processing">
|
|
<LoaderCircle v-if="form.processing" class="h-4 w-4 animate-spin" />
|
|
Reset password
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</AuthLayout>
|
|
</template>
|