Skip to content

Commit 5910424

Browse files
authored
Merge pull request #224 from connorabbas/develop
Updates
2 parents 3ba6c36 + 746a1e4 commit 5910424

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
A basic authentication starter kit using [Laravel](https://laravel.com/docs/master), [Intertia.js](https://inertiajs.com/), [PrimeVue](https://primevue.org/) components, and [Tailwind CSS](https://tailwindcss.com/).
88

9-
[Hosted Demo Project](https://laravel-primevue-starter-kit-demo-master-yhjxow.laravel.cloud/)
9+
[Hosted Demo Project](https://laravel-primevue-starter-kit-demo.laravel.cloud/)
1010

1111
> [!TIP]
1212
> Do you need a separate Vue SPA front-end instead of using Inertia.js? Consider using the [Vue SPA w/ PrimeVue & Laravel Breeze API Starter Kit](https://github.com/connorabbas/primevue-spa-laravel-api) instead.

resources/js/layouts/GuestAuthLayout.vue

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ import ApplicationLogo from '@/components/ApplicationLogo.vue';
33
</script>
44

55
<template>
6-
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0">
7-
<div>
8-
<InertiaLink href="/">
9-
<ApplicationLogo class="w-15 h-15 fill-current text-surface-900 dark:text-surface-0" />
10-
</InertiaLink>
6+
<Container>
7+
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0">
8+
<div>
9+
<InertiaLink href="/">
10+
<ApplicationLogo class="w-15 h-15 fill-current text-surface-900 dark:text-surface-0" />
11+
</InertiaLink>
12+
</div>
13+
<div
14+
v-if="$slots.message"
15+
class="w-full sm:max-w-md mt-6 px-4 sm:px-0"
16+
>
17+
<slot name="message" />
18+
</div>
19+
<div class="w-full sm:max-w-md mt-6">
20+
<Card>
21+
<template #content>
22+
<slot />
23+
</template>
24+
</Card>
25+
</div>
1126
</div>
12-
13-
<div
14-
v-if="$slots.message"
15-
class="w-full sm:max-w-md mt-6 px-4 sm:px-0"
16-
>
17-
<slot name="message" />
18-
</div>
19-
20-
<div class="w-full sm:max-w-md mt-6">
21-
<Card>
22-
<template #content>
23-
<slot />
24-
</template>
25-
</Card>
26-
</div>
27-
</div>
27+
</Container>
2828
</template>

0 commit comments

Comments
 (0)