From c255d14f23097041cf06dd902b4b56d8bd72dda6 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Fri, 23 Aug 2024 20:57:31 -0500 Subject: [PATCH] onboarding flow --- lang/en.json | 1 + lang/es.json | 1 + resources/views/auth/login.blade.php | 13 ++++++++++++- resources/views/auth/register.blade.php | 8 ++++---- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/lang/en.json b/lang/en.json index 016c0ef..4ebb12e 100644 --- a/lang/en.json +++ b/lang/en.json @@ -74,6 +74,7 @@ "I agree to the :terms_of_service and :privacy_policy": "I agree to the :terms_of_service and :privacy_policy", "Terms of Service": "Terms of Service", "Privacy Policy": "Privacy Notice", + "Need to register?": "Need to register?", "Already registered?": "Already registered?", "Reset Password": "Reset Password", "Please confirm access to your account by entering the authentication code provided by your authenticator application.": "Please confirm access to your account by entering the authentication code provided by your authenticator application.", diff --git a/lang/es.json b/lang/es.json index 42c5b74..6ba4da0 100644 --- a/lang/es.json +++ b/lang/es.json @@ -74,6 +74,7 @@ "I agree to the :terms_of_service and :privacy_policy": "Acepto los :terms_of_service y la :privacy_policy", "Terms of Service": "Términos de Servicio", "Privacy Policy": "Aviso de Privacidad", + "Need to register?": "¿Necesitas registrarte?", "Already registered?": "¿Ya estás registrado?", "Reset Password": "Restablecer Contraseña", "Please confirm access to your account by entering the authentication code provided by your authenticator application.": "Por favor, confirma el acceso a tu cuenta ingresando el código de autenticación proporcionado por tu aplicación de autenticación.", diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index 4af8898..02b2aaf 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -34,7 +34,7 @@
@if (Route::has('password.request')) - + {{ __('Forgot your password?') }} @endif @@ -42,6 +42,17 @@ {{ __('Log in') }} + +
+ + + +
+ + + {{ __('Need to register?') }} + +
diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php index b54825a..3a744e9 100644 --- a/resources/views/auth/register.blade.php +++ b/resources/views/auth/register.blade.php @@ -35,10 +35,10 @@
-
+
{!! __('I agree to the :terms_of_service and :privacy_policy', [ - 'terms_of_service' => ''.__('Terms of Service').'', - 'privacy_policy' => ''.__('Privacy Policy').'', + 'terms_of_service' => ''.__('Terms of Service').'', + 'privacy_policy' => ''.__('Privacy Policy').'', ]) !!}
@@ -47,7 +47,7 @@ @endif