wip on password reset
This commit is contained in:
@@ -9,14 +9,6 @@
|
||||
|
||||
<!-- Styles -->
|
||||
<link rel="stylesheet" href="/vendor/nova/app.css?id=496e3383c5e2918c7bc875f45870e701">
|
||||
<style>
|
||||
.bg-secondary-500 {
|
||||
background-color: rgb(186,230,253);
|
||||
}
|
||||
.hover:bg-secondary-400 {
|
||||
background-color: rgba(24, 182, 155, 0.5);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="min-w-site text-sm font-medium min-h-full text-gray-500 dark:text-gray-400 bg-gray-100 dark:bg-gray-900">
|
||||
<div class="py-6 px-1 md:px-2 lg:px-6">
|
||||
@@ -24,7 +16,7 @@
|
||||
<span class="text-4xl">{{ __('Online panel') }}</span>
|
||||
</div>
|
||||
<div>
|
||||
<form class="bg-white dark:bg-gray-800 shadow rounded-lg p-8 max-w-[25rem] mx-auto" method="POST" action="{{ route('register') }}">
|
||||
<form class="bg-white dark:bg-gray-800 shadow rounded-lg p-8 max-w-lg mx-auto" method="POST" action="{{ route('register') }}">
|
||||
@csrf
|
||||
<h2 class="text-2xl text-center font-normal mb-6">{{ __('Welcome Back!') }}</h2>
|
||||
<svg class="block mx-auto mb-6" xmlns="http://www.w3.org/2000/svg" width="100" height="2" viewBox="0 0 100 2">
|
||||
@@ -34,7 +26,7 @@
|
||||
<label class="block mb-1" for="username">
|
||||
{{ __('Full Name') }}
|
||||
</label>
|
||||
<input class="form-control form-input form-input-bordered w-full @error('name') form-input-border-error @enderror" id="name" type="text" name="name" autofocus="" required="" value="{{ old('name') }}">
|
||||
<input class="form-control form-input form-input-bordered w-full @error('name') form-input-border-error @enderror" id="name" type="text" name="name" autofocus="" value="{{ old('name') }}">
|
||||
|
||||
@error('name')
|
||||
<span class="text-red-500 text-italic">
|
||||
@@ -46,7 +38,7 @@
|
||||
<label class="block mb-1" for="username">
|
||||
{{ __('Phone') }}
|
||||
</label>
|
||||
<input class="form-control form-input form-input-bordered w-full" id="phone" type="text" name="phone" autofocus="" required="" value="{{ old('phone') }}">
|
||||
<input class="form-control form-input form-input-bordered w-full" id="phone" type="text" name="phone" autofocus="" value="{{ old('phone') }}">
|
||||
|
||||
@error('phone')
|
||||
<span class="text-red-500 text-italic">
|
||||
@@ -58,7 +50,7 @@
|
||||
<label class="block mb-1" for="username">
|
||||
{{ __('Username') }}
|
||||
</label>
|
||||
<input class="form-control form-input form-input-bordered w-full" id="username" type="text" name="username" autofocus="" required="" value="{{ old('username') }}">
|
||||
<input class="form-control form-input form-input-bordered w-full" id="username" type="text" name="username" autofocus="" value="{{ old('username') }}">
|
||||
|
||||
@error('username')
|
||||
<span class="text-red-500 text-italic">
|
||||
@@ -70,7 +62,7 @@
|
||||
<label class="block mb-1" for="password">
|
||||
{{ __('Password') }}
|
||||
</label>
|
||||
<input class="form-control form-input form-input-bordered w-full" id="password" type="password" name="password" required="">
|
||||
<input class="form-control form-input form-input-bordered w-full" id="password" type="password" name="password" >
|
||||
|
||||
@error('password')
|
||||
<span class="text-red-500 text-italic">
|
||||
@@ -82,7 +74,7 @@
|
||||
<label class="block mb-1" for="password_confirmation">
|
||||
{{ __('Confirm Password') }}
|
||||
</label>
|
||||
<input class="form-control form-input form-input-bordered w-full" id="password_confirmation" type="password" name="password_confirmation" required="">
|
||||
<input class="form-control form-input form-input-bordered w-full" id="password_confirmation" type="password" name="password_confirmation" >
|
||||
|
||||
@error('password_confirmation')
|
||||
<span class="text-red-500 text-italic">
|
||||
|
||||
Reference in New Issue
Block a user