Skip to content

Commit ccc6df3

Browse files
committed
wip
1 parent ff7eb21 commit ccc6df3

File tree

4 files changed

+3
-13
lines changed

4 files changed

+3
-13
lines changed

resources/js/app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { createApp, h } from 'vue';
77
import { ZiggyVue } from '../../vendor/tightenco/ziggy';
88
import { initializeTheme } from './composables/useAppearance';
99

10-
// Extend ImportMeta interface for Vite
10+
// Extend ImportMeta interface for Vite...
1111
declare module 'vite/client' {
1212
interface ImportMetaEnv {
1313
readonly VITE_APP_NAME: string;
@@ -36,5 +36,5 @@ createInertiaApp({
3636
},
3737
});
3838

39-
// This will set dark/light mode on load
39+
// This will set light / dark mode on page load...
4040
initializeTheme();

resources/js/pages/auth/ForgotPassword.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ const submit = () => {
3434
<div class="grid gap-2">
3535
<Label for="email">Email Address</Label>
3636
<Input id="email" type="email" name="email" autocomplete="off" v-model="form.email" autofocus />
37-
3837
<InputError :message="form.errors.email" class="mt-2" />
3938
</div>
4039

@@ -45,6 +44,7 @@ const submit = () => {
4544
</Button>
4645
</div>
4746
</form>
47+
4848
<div class="space-x-1 text-center text-sm">
4949
<span>Or, return to the</span>
5050
<TextLink :href="route('login')" class="underline underline-offset-4">login page</TextLink>

resources/js/pages/settings/Password.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ const updatePassword = () => {
6464
<form @submit.prevent="updatePassword" class="space-y-6">
6565
<div class="grid gap-2">
6666
<Label for="current_password">Current Password</Label>
67-
6867
<Input
6968
id="current_password"
7069
ref="currentPasswordInput"
@@ -73,13 +72,11 @@ const updatePassword = () => {
7372
class="mt-1 block w-full"
7473
autocomplete="current-password"
7574
/>
76-
7775
<InputError :message="form.errors.current_password" />
7876
</div>
7977

8078
<div class="grid gap-2">
8179
<Label for="password">New password</Label>
82-
8380
<Input
8481
id="password"
8582
ref="passwordInput"
@@ -88,21 +85,18 @@ const updatePassword = () => {
8885
class="mt-1 block w-full"
8986
autocomplete="new-password"
9087
/>
91-
9288
<InputError :message="form.errors.password" />
9389
</div>
9490

9591
<div class="grid gap-2">
9692
<Label for="password_confirmation">Confirm password</Label>
97-
9893
<Input
9994
id="password_confirmation"
10095
v-model="form.password_confirmation"
10196
type="password"
10297
class="mt-1 block w-full"
10398
autocomplete="new-password"
10499
/>
105-
106100
<InputError :message="form.errors.password_confirmation" />
107101
</div>
108102

resources/js/pages/settings/Profile.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,13 @@ const submit = () => {
5151
<form @submit.prevent="submit" class="space-y-6">
5252
<div class="grid gap-2">
5353
<Label for="name">Name</Label>
54-
5554
<Input id="name" class="mt-1 block w-full" v-model="form.name" required autocomplete="name" />
56-
5755
<InputError class="mt-2" :message="form.errors.name" />
5856
</div>
5957

6058
<div class="grid gap-2">
6159
<Label for="email">Email Address</Label>
62-
6360
<Input id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autocomplete="username" />
64-
6561
<InputError class="mt-2" :message="form.errors.email" />
6662
</div>
6763

0 commit comments

Comments
 (0)