Additional links on login and register pages to go to the inverse.

This commit is contained in:
Matt Young 2024-05-27 18:18:23 -05:00
parent e8348252f9
commit b8b75854d2
3 changed files with 8 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
{ {
$user->forceFill([ $user->forceFill([
'first_name' => $input['first_name'], 'first_name' => $input['first_name'],
'last_ name' => $input['last_ name'], 'last_name' => $input['last_name'],
'judging_preference' => $input['judging_preference'], 'judging_preference' => $input['judging_preference'],
'cell_phone' => $input['cell_phone'], 'cell_phone' => $input['cell_phone'],
'email' => $input['email'], 'email' => $input['email'],

View File

@ -9,6 +9,10 @@
<x-auth.rememberme-forgotpassword /> <x-auth.rememberme-forgotpassword />
<x-auth.form-button>Log In</x-auth.form-button> <x-auth.form-button>Log In</x-auth.form-button>
</form> </form>
<div class="pt-4 border-t border-gray-900/10 mt-4">
Don't have an account? <a href="/register" class="font-semibold text-indigo-600 hover:text-indigo-500"> Click here to register.
</div>
</div> </div>
</div> </div>
</x-layout.guest> </x-layout.guest>

View File

@ -13,6 +13,9 @@
<x-auth.form-field name="password_confirmation" label="Confirm Password" autocomplete="new-password" type="password" required /> <x-auth.form-field name="password_confirmation" label="Confirm Password" autocomplete="new-password" type="password" required />
<x-auth.form-button>Create Account</x-auth.form-button> <x-auth.form-button>Create Account</x-auth.form-button>
</form> </form>
<div class="pt-4 border-t border-gray-900/10 mt-4">
Already have an account? <a href="/login" class="font-semibold text-indigo-600 hover:text-indigo-500"> Click here to Log In.
</div>
</div> </div>
</div> </div>
</x-layout.guest> </x-layout.guest>