fix: themed manage account forms
This commit is contained in:
parent
a4bd889d23
commit
a2ecb62a05
@ -35,7 +35,7 @@
|
|||||||
{{ __('Remember me') }}
|
{{ __('Remember me') }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="justify-content-end mt-4 mb-4">
|
<div class="d-flex justify-content-end mt-4 mb-4 text-end">
|
||||||
@if (Route::has('password.request'))
|
@if (Route::has('password.request'))
|
||||||
<a class="" href="{{ route('password.request') }}">
|
<a class="" href="{{ route('password.request') }}">
|
||||||
{{ __('Forgot your password?') }}
|
{{ __('Forgot your password?') }}
|
||||||
|
@ -63,8 +63,9 @@
|
|||||||
alt="user avatar"></a>
|
alt="user avatar"></a>
|
||||||
<ul class="submenu">
|
<ul class="submenu">
|
||||||
@if (Auth::user())
|
@if (Auth::user())
|
||||||
<li><a href="/artist/{{ Auth::user()->artists->first()->slug }}"><i class="ri-user-line"></i> Profile</a></li>
|
|
||||||
<li><a href="/create-artwork"><i class="ri-image-add-line"></i> Create Artwork</a></li>
|
<li><a href="/create-artwork"><i class="ri-image-add-line"></i> Create Artwork</a></li>
|
||||||
|
<li><a href="/artist/{{ Auth::user()->artists->first()->slug }}"><i class="ri-profile-line"></i> View Artist Profile</a></li>
|
||||||
|
<li><a href="/profile"><i class="ri-user-line"></i> Manage Account</a></li>
|
||||||
<form method="post" action="/logout" name="logout" id="logoutForm">
|
<form method="post" action="/logout" name="logout" id="logoutForm">
|
||||||
@csrf
|
@csrf
|
||||||
<li><a href="#" onclick="event.preventDefault(); document.getElementById('logoutForm').submit();"><i class="ri-logout-box-r-line"></i>Sign Out</a></li>
|
<li><a href="#" onclick="event.preventDefault(); document.getElementById('logoutForm').submit();"><i class="ri-logout-box-r-line"></i>Sign Out</a></li>
|
||||||
|
@ -1,29 +1,20 @@
|
|||||||
<x-app-layout>
|
<x-app-layout>
|
||||||
<x-slot name="header">
|
<x-slot name="header">
|
||||||
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
|
<h2 class="">
|
||||||
{{ __('Manage') }}
|
{{ __('Manage Account Credentials') }}
|
||||||
</h2>
|
</h2>
|
||||||
</x-slot>
|
</x-slot>
|
||||||
|
|
||||||
<div class="py-12">
|
<section class="signup-wrapper signin-wrapper ptb-4">
|
||||||
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6">
|
<div class="container">
|
||||||
<div class="p-4 sm:p-8 shadow sm:rounded-lg">
|
<div class="row d-flex-row d-flex align-content-stretch flex-wrap">
|
||||||
<div class="max-w-xl">
|
<div class="col-xl-5 col-lg-12 authbox">
|
||||||
@include('profile.partials.update-profile-information-form')
|
@include('profile.partials.update-profile-information-form')
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="col-xl-5 offset-xl-2 col-lg-12 authbox">
|
||||||
|
|
||||||
<div class="p-4 sm:p-8 shadow sm:rounded-lg">
|
|
||||||
<div class="max-w-xl">
|
|
||||||
@include('profile.partials.update-password-form')
|
@include('profile.partials.update-password-form')
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{--<div class="p-4 sm:p-8 shadow sm:rounded-lg">
|
|
||||||
<div class="max-w-xl">
|
|
||||||
@include('profile.partials.delete-user-form')
|
|
||||||
</div>
|
|
||||||
</div>--}}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
</x-app-layout>
|
</x-app-layout>
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
<section>
|
<div class="row mt-4 gutter-2">
|
||||||
<header>
|
<div class="col">
|
||||||
<h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">
|
<div class="signin-content">
|
||||||
{{ __('Update Password') }}
|
<div class="mb-6">
|
||||||
</h2>
|
<h2 class="mb-2">{{ __('Update Password') }}</h2>
|
||||||
|
<p class="normal">{{ __('Ensure your account is using a long, random password to stay secure.') }}</p>
|
||||||
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
</div>
|
||||||
{{ __('Ensure your account is using a long, random password to stay secure.') }}
|
</div>
|
||||||
</p>
|
</div>
|
||||||
</header>
|
</div>
|
||||||
|
<div class="row mt-0 gutter-2">
|
||||||
|
<div class="col">
|
||||||
<form method="post" action="{{ route('password.update') }}" class="mt-6 space-y-6">
|
<form method="post" action="{{ route('password.update') }}" class="mt-6 space-y-6">
|
||||||
@csrf
|
@csrf
|
||||||
@method('put')
|
@method('put')
|
||||||
@ -31,8 +32,8 @@
|
|||||||
<x-input-error :messages="$errors->updatePassword->get('password_confirmation')" class="mt-2" />
|
<x-input-error :messages="$errors->updatePassword->get('password_confirmation')" class="mt-2" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex items-center gap-4">
|
<div class="d-flex justify-content-end text-end mt-4 mb-4">
|
||||||
<x-primary-button>{{ __('Save') }}</x-primary-button>
|
<x-primary-button class="ml-3 btn btn-gradient"><span>{{ __('Save') }}</span></x-primary-button>
|
||||||
|
|
||||||
@if (session('status') === 'password-updated')
|
@if (session('status') === 'password-updated')
|
||||||
<p
|
<p
|
||||||
@ -45,4 +46,5 @@ class="text-sm text-gray-600 dark:text-gray-400"
|
|||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</div>
|
||||||
|
</div>
|
||||||
|
@ -1,18 +1,20 @@
|
|||||||
<section>
|
<div class="row mt-4 gutter-2">
|
||||||
<header>
|
<div class="col">
|
||||||
<h2>
|
<div class="signin-content">
|
||||||
{{ __('Login Information') }}
|
<div class="mb-6">
|
||||||
</h2>
|
<h2 class="mb-2">{{ __('Edit Login Information') }}</h2>
|
||||||
<p>
|
<p class="normal">{{ __("Update your account's username and email address. Note, your username may not be the same as your public artist profile.") }}</p>
|
||||||
{{ __("Update your account's username and email address. Note, your username may not be the same as your public artist profile.") }}
|
</div>
|
||||||
</p>
|
</div>
|
||||||
</header>
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row mt-0 gutter-2">
|
||||||
|
<div class="col">
|
||||||
<form id="send-verification" method="post" action="{{ route('verification.send') }}">
|
<form id="send-verification" method="post" action="{{ route('verification.send') }}">
|
||||||
@csrf
|
@csrf
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<form method="post" action="{{ route('profile.update') }}" class="mt-6 space-y-6">
|
<form method="post" action="{{ route('profile.update') }}">
|
||||||
@csrf
|
@csrf
|
||||||
@method('patch')
|
@method('patch')
|
||||||
|
|
||||||
@ -32,8 +34,8 @@
|
|||||||
<p class="text-sm mt-2 text-gray-800 dark:text-gray-200">
|
<p class="text-sm mt-2 text-gray-800 dark:text-gray-200">
|
||||||
{{ __('Your email address is unverified.') }}
|
{{ __('Your email address is unverified.') }}
|
||||||
|
|
||||||
<button form="send-verification" 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">
|
<button form="send-verification" class="btn btn-small btn-gradient">
|
||||||
{{ __('Click here to re-send the verification email.') }}
|
<span>{{ __('Click here to re-send the verification email.') }}</span>
|
||||||
</button>
|
</button>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -46,9 +48,8 @@
|
|||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex items-center gap-4">
|
<div class="d-flex justify-content-end mt-4 mb-4 text-end">
|
||||||
<x-primary-button>{{ __('Save') }}</x-primary-button>
|
<x-primary-button class="ml-3 btn btn-gradient"><span>{{ __('Update Login Information') }}</span></x-primary-button>
|
||||||
|
|
||||||
@if (session('status') === 'profile-updated')
|
@if (session('status') === 'profile-updated')
|
||||||
<p
|
<p
|
||||||
x-data="{ show: true }"
|
x-data="{ show: true }"
|
||||||
@ -60,4 +61,5 @@ class="text-sm text-gray-600 dark:text-gray-400"
|
|||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</div>
|
||||||
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user