onboarding flow

This commit is contained in:
hackerESQ
2024-08-23 20:57:31 -05:00
parent 3fcc4d9833
commit c255d14f23
4 changed files with 18 additions and 5 deletions
+12 -1
View File
@@ -34,7 +34,7 @@
<div class="flex items-center justify-end mt-4">
@if (Route::has('password.request'))
<a class="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800" href="{{ route('password.request') }}">
<a class="text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800" href="{{ route('password.request') }}">
{{ __('Forgot your password?') }}
</a>
@endif
@@ -42,6 +42,17 @@
<x-button type="submit" class="ms-4" >
{{ __('Log in') }}
</x-button>
</div>
<x-section-border />
<div class="">
<x-button link="{{ route('register') }}" class="btn-sm btn-block btn-outline btn-secondary" >
{{ __('Need to register?') }}
</x-button>
</div>
</form>
</x-authentication-card>