Skip to content

Commit

Permalink
Merge pull request #11 from JeffreyNaval/master
Browse files Browse the repository at this point in the history
Add home link to logo
  • Loading branch information
imliam authored May 8, 2020
2 parents 95911d3 + f70ea68 commit 78d009c
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 7 deletions.
4 changes: 3 additions & 1 deletion stubs/auth/resources/views/livewire/auth/login.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div>
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
<a href="{{ route('home') }}">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
</a>

<h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9">
Sign in to your account
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div>
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
<a href="{{ route('home') }}">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
</a>

<h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9">
Confirm your password
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div>
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
<a href="{{ route('home') }}">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
</a>

<h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9">
Reset password
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div>
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
<a href="{{ route('home') }}">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
</a>

<h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9">
Reset password
Expand Down
4 changes: 3 additions & 1 deletion stubs/auth/resources/views/livewire/auth/register.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div>
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
<a href="{{ route('home') }}">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
</a>

<h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9">
Create a new account
Expand Down
4 changes: 3 additions & 1 deletion stubs/auth/resources/views/livewire/auth/verify.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div>
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
<a href="{{ route('home') }}">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
</a>

<h2 class="mt-6 text-3xl font-extrabold text-center text-gray-900 leading-9">
Verify your email address
Expand Down
4 changes: 3 additions & 1 deletion stubs/default/resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ class="font-medium text-indigo-600 hover:text-indigo-500 focus:outline-none focu
<div class="flex items-center justify-center">
<div class="flex flex-col justify-around">
<div class="space-y-6">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
<a href="{{ route('home') }}">
<x-logo class="w-auto h-16 mx-auto text-indigo-600" />
</a>

<h1 class="text-5xl font-extrabold tracking-wider text-center text-gray-600">
{{ config('app.name') }}
Expand Down

0 comments on commit 78d009c

Please sign in to comment.