Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 20, 2021
1 parent 4dce8a8 commit 128fd28
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 56 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function ConfirmPassword() {

return (
<Guest>
<Head title="Secure Area" />
<Head title="Confirm Password" />

<div className="mb-4 text-sm text-gray-600">
This is a secure area of the application. Please confirm your password before continuing.
Expand Down
22 changes: 11 additions & 11 deletions stubs/inertia-vue/resources/js/Layouts/Authenticated.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
<!-- Logo -->
<div class="flex-shrink-0 flex items-center">
<Link :href="route('dashboard')">
<breeze-application-logo class="block h-9 w-auto" />
<BreezeApplicationLogo class="block h-9 w-auto" />
</Link>
</div>

<!-- Navigation Links -->
<div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex">
<breeze-nav-link :href="route('dashboard')" :active="route().current('dashboard')">
<BreezeNavLink :href="route('dashboard')" :active="route().current('dashboard')">
Dashboard
</breeze-nav-link>
</BreezeNavLink>
</div>
</div>

<div class="hidden sm:flex sm:items-center sm:ml-6">
<!-- Settings Dropdown -->
<div class="ml-3 relative">
<breeze-dropdown align="right" width="48">
<BreezeDropdown align="right" width="48">
<template #trigger>
<span class="inline-flex rounded-md">
<button type="button" class="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white hover:text-gray-700 focus:outline-none transition ease-in-out duration-150">
Expand All @@ -38,11 +38,11 @@
</template>

<template #content>
<breeze-dropdown-link :href="route('logout')" method="post" as="button">
<BreezeDropdownLink :href="route('logout')" method="post" as="button">
Log Out
</breeze-dropdown-link>
</BreezeDropdownLink>
</template>
</breeze-dropdown>
</BreezeDropdown>
</div>
</div>

Expand All @@ -61,9 +61,9 @@
<!-- Responsive Navigation Menu -->
<div :class="{'block': showingNavigationDropdown, 'hidden': ! showingNavigationDropdown}" class="sm:hidden">
<div class="pt-2 pb-3 space-y-1">
<breeze-responsive-nav-link :href="route('dashboard')" :active="route().current('dashboard')">
<BreezeResponsiveNavLink :href="route('dashboard')" :active="route().current('dashboard')">
Dashboard
</breeze-responsive-nav-link>
</BreezeResponsiveNavLink>
</div>

<!-- Responsive Settings Options -->
Expand All @@ -74,9 +74,9 @@
</div>

<div class="mt-3 space-y-1">
<breeze-responsive-nav-link :href="route('logout')" method="post" as="button">
<BreezeResponsiveNavLink :href="route('logout')" method="post" as="button">
Log Out
</breeze-responsive-nav-link>
</BreezeResponsiveNavLink>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia-vue/resources/js/Layouts/Guest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100">
<div>
<Link href="/">
<breeze-application-logo class="w-20 h-20 fill-current text-gray-500" />
<BreezeApplicationLogo class="w-20 h-20 fill-current text-gray-500" />
</Link>
</div>

Expand Down
12 changes: 6 additions & 6 deletions stubs/inertia-vue/resources/js/Pages/Auth/ConfirmPassword.vue
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<template>
<Head title="Secure Area" />
<Head title="Confirm Password" />

<div class="mb-4 text-sm text-gray-600">
This is a secure area of the application. Please confirm your password before continuing.
</div>

<breeze-validation-errors class="mb-4" />
<BreezeValidationErrors class="mb-4" />

<form @submit.prevent="submit">
<div>
<breeze-label for="password" value="Password" />
<breeze-input id="password" type="password" class="mt-1 block w-full" v-model="form.password" required autocomplete="current-password" autofocus />
<BreezeLabel for="password" value="Password" />
<BreezeInput id="password" type="password" class="mt-1 block w-full" v-model="form.password" required autocomplete="current-password" autofocus />
</div>

<div class="flex justify-end mt-4">
<breeze-button class="ml-4" :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
<BreezeButton class="ml-4" :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
Confirm
</breeze-button>
</BreezeButton>
</div>
</form>
</template>
Expand Down
10 changes: 5 additions & 5 deletions stubs/inertia-vue/resources/js/Pages/Auth/ForgotPassword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
{{ status }}
</div>

<breeze-validation-errors class="mb-4" />
<BreezeValidationErrors class="mb-4" />

<form @submit.prevent="submit">
<div>
<breeze-label for="email" value="Email" />
<breeze-input id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autofocus autocomplete="username" />
<BreezeLabel for="email" value="Email" />
<BreezeInput id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autofocus autocomplete="username" />
</div>

<div class="flex items-center justify-end mt-4">
<breeze-button :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
<BreezeButton :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
Email Password Reset Link
</breeze-button>
</BreezeButton>
</div>
</form>
</template>
Expand Down
16 changes: 8 additions & 8 deletions stubs/inertia-vue/resources/js/Pages/Auth/Login.vue
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
<template>
<Head title="Log in" />

<breeze-validation-errors class="mb-4" />
<BreezeValidationErrors class="mb-4" />

<div v-if="status" class="mb-4 font-medium text-sm text-green-600">
{{ status }}
</div>

<form @submit.prevent="submit">
<div>
<breeze-label for="email" value="Email" />
<breeze-input id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autofocus autocomplete="username" />
<BreezeLabel for="email" value="Email" />
<BreezeInput id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autofocus autocomplete="username" />
</div>

<div class="mt-4">
<breeze-label for="password" value="Password" />
<breeze-input id="password" type="password" class="mt-1 block w-full" v-model="form.password" required autocomplete="current-password" />
<BreezeLabel for="password" value="Password" />
<BreezeInput id="password" type="password" class="mt-1 block w-full" v-model="form.password" required autocomplete="current-password" />
</div>

<div class="block mt-4">
<label class="flex items-center">
<breeze-checkbox name="remember" v-model:checked="form.remember" />
<BreezeCheckbox name="remember" v-model:checked="form.remember" />
<span class="ml-2 text-sm text-gray-600">Remember me</span>
</label>
</div>
Expand All @@ -30,9 +30,9 @@
Forgot your password?
</Link>

<breeze-button class="ml-4" :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
<BreezeButton class="ml-4" :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
Log in
</breeze-button>
</BreezeButton>
</div>
</form>
</template>
Expand Down
22 changes: 11 additions & 11 deletions stubs/inertia-vue/resources/js/Pages/Auth/Register.vue
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
<template>
<Head title="Register" />

<breeze-validation-errors class="mb-4" />
<BreezeValidationErrors class="mb-4" />

<form @submit.prevent="submit">
<div>
<breeze-label for="name" value="Name" />
<breeze-input id="name" type="text" class="mt-1 block w-full" v-model="form.name" required autofocus autocomplete="name" />
<BreezeLabel for="name" value="Name" />
<BreezeInput id="name" type="text" class="mt-1 block w-full" v-model="form.name" required autofocus autocomplete="name" />
</div>

<div class="mt-4">
<breeze-label for="email" value="Email" />
<breeze-input id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autocomplete="username" />
<BreezeLabel for="email" value="Email" />
<BreezeInput id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autocomplete="username" />
</div>

<div class="mt-4">
<breeze-label for="password" value="Password" />
<breeze-input id="password" type="password" class="mt-1 block w-full" v-model="form.password" required autocomplete="new-password" />
<BreezeLabel for="password" value="Password" />
<BreezeInput id="password" type="password" class="mt-1 block w-full" v-model="form.password" required autocomplete="new-password" />
</div>

<div class="mt-4">
<breeze-label for="password_confirmation" value="Confirm Password" />
<breeze-input id="password_confirmation" type="password" class="mt-1 block w-full" v-model="form.password_confirmation" required autocomplete="new-password" />
<BreezeLabel for="password_confirmation" value="Confirm Password" />
<BreezeInput id="password_confirmation" type="password" class="mt-1 block w-full" v-model="form.password_confirmation" required autocomplete="new-password" />
</div>

<div class="flex items-center justify-end mt-4">
<Link :href="route('login')" class="underline text-sm text-gray-600 hover:text-gray-900">
Already registered?
</Link>

<breeze-button class="ml-4" :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
<BreezeButton class="ml-4" :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
Register
</breeze-button>
</BreezeButton>
</div>
</form>
</template>
Expand Down
18 changes: 9 additions & 9 deletions stubs/inertia-vue/resources/js/Pages/Auth/ResetPassword.vue
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
<template>
<Head title="Reset Password" />

<breeze-validation-errors class="mb-4" />
<BreezeValidationErrors class="mb-4" />

<form @submit.prevent="submit">
<div>
<breeze-label for="email" value="Email" />
<breeze-input id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autofocus autocomplete="username" />
<BreezeLabel for="email" value="Email" />
<BreezeInput id="email" type="email" class="mt-1 block w-full" v-model="form.email" required autofocus autocomplete="username" />
</div>

<div class="mt-4">
<breeze-label for="password" value="Password" />
<breeze-input id="password" type="password" class="mt-1 block w-full" v-model="form.password" required autocomplete="new-password" />
<BreezeLabel for="password" value="Password" />
<BreezeInput id="password" type="password" class="mt-1 block w-full" v-model="form.password" required autocomplete="new-password" />
</div>

<div class="mt-4">
<breeze-label for="password_confirmation" value="Confirm Password" />
<breeze-input id="password_confirmation" type="password" class="mt-1 block w-full" v-model="form.password_confirmation" required autocomplete="new-password" />
<BreezeLabel for="password_confirmation" value="Confirm Password" />
<BreezeInput id="password_confirmation" type="password" class="mt-1 block w-full" v-model="form.password_confirmation" required autocomplete="new-password" />
</div>

<div class="flex items-center justify-end mt-4">
<breeze-button :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
<BreezeButton :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
Reset Password
</breeze-button>
</BreezeButton>
</div>
</form>
</template>
Expand Down
4 changes: 2 additions & 2 deletions stubs/inertia-vue/resources/js/Pages/Auth/VerifyEmail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

<form @submit.prevent="submit">
<div class="mt-4 flex items-center justify-between">
<breeze-button :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
<BreezeButton :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
Resend Verification Email
</breeze-button>
</BreezeButton>

<Link :href="route('logout')" method="post" as="button" class="underline text-sm text-gray-600 hover:text-gray-900">Log Out</Link>
</div>
Expand Down
4 changes: 2 additions & 2 deletions stubs/inertia-vue/resources/js/Pages/Dashboard.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<Head title="Dashboard" />

<breeze-authenticated-layout>
<BreezeAuthenticatedLayout>
<template #header>
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
Dashboard
Expand All @@ -17,7 +17,7 @@
</div>
</div>
</div>
</breeze-authenticated-layout>
</BreezeAuthenticatedLayout>
</template>

<script>
Expand Down

0 comments on commit 128fd28

Please sign in to comment.