Proje dosyaları eklendi
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
<x-layouts.app :title="__('ui.forgot_password').' — TrafficPumper'"><x-auth-card :title="__('ui.forgot_password')" :description="__('ui.forgot_description')"><form method="POST" action="{{ route('password.email') }}">@csrf
|
||||
<div class="mb-3"><label class="form-label" for="email">{{ __('ui.email') }}</label><input class="form-control" id="email" name="email" type="email" value="{{ old('email') }}" required autofocus></div><button class="btn btn-primary w-100" type="submit">{{ __('ui.send_link') }}</button></form></x-auth-card></x-layouts.app>
|
||||
@@ -0,0 +1,8 @@
|
||||
<x-layouts.app :title="__('ui.sign_in').' — TrafficPumper'"><x-auth-card :title="__('ui.sign_in')" :description="__('ui.login_description')">
|
||||
<form method="POST" action="{{ route('login') }}">@csrf
|
||||
<div class="mb-3"><label class="form-label" for="email">{{ __('ui.email') }}</label><input class="form-control" id="email" name="email" type="email" value="{{ old('email') }}" required autofocus autocomplete="email"></div>
|
||||
<div class="mb-3"><label class="form-label" for="password">{{ __('ui.password') }}</label><input class="form-control" id="password" name="password" type="password" required autocomplete="current-password"></div>
|
||||
<div class="form-check mb-3"><input class="form-check-input" id="remember" name="remember" type="checkbox"><label class="form-check-label" for="remember">{{ __('ui.remember') }}</label></div>
|
||||
<button class="btn btn-primary w-100" type="submit">{{ __('ui.sign_in') }}</button></form>
|
||||
<div class="tp-auth-links d-flex flex-wrap justify-content-between gap-2 mt-3 small"><a href="{{ route('password.request') }}">{{ __('ui.forgot_password') }}</a><a href="{{ route('register') }}">{{ __('ui.register') }}</a></div>
|
||||
</x-auth-card></x-layouts.app>
|
||||
@@ -0,0 +1,6 @@
|
||||
<x-layouts.app :title="__('ui.register').' — TrafficPumper'"><x-auth-card :title="__('ui.create_account')" :description="__('ui.register_description')"><form method="POST" action="{{ route('register') }}">@csrf
|
||||
<div class="mb-3"><label class="form-label" for="name">{{ __('ui.full_name') }}</label><input class="form-control" id="name" name="name" value="{{ old('name') }}" required autofocus autocomplete="name"></div>
|
||||
<div class="mb-3"><label class="form-label" for="email">{{ __('ui.email') }}</label><input class="form-control" id="email" name="email" type="email" value="{{ old('email') }}" required autocomplete="email"></div>
|
||||
<div class="mb-3"><label class="form-label" for="password">{{ __('ui.password') }}</label><input class="form-control" id="password" name="password" type="password" required autocomplete="new-password"></div>
|
||||
<div class="mb-3"><label class="form-label" for="password_confirmation">{{ __('ui.password_confirmation') }}</label><input class="form-control" id="password_confirmation" name="password_confirmation" type="password" required autocomplete="new-password"></div>
|
||||
<button class="btn btn-primary w-100" type="submit">{{ __('ui.register') }}</button></form></x-auth-card></x-layouts.app>
|
||||
@@ -0,0 +1,4 @@
|
||||
<x-layouts.app :title="__('ui.reset_password').' — TrafficPumper'"><x-auth-card :title="__('ui.reset_password')"><form method="POST" action="{{ route('password.store') }}">@csrf<input type="hidden" name="token" value="{{ $request->route('token') }}">
|
||||
<div class="mb-3"><label class="form-label" for="email">{{ __('ui.email') }}</label><input class="form-control" id="email" name="email" type="email" value="{{ old('email', $request->email) }}" required></div>
|
||||
<div class="mb-3"><label class="form-label" for="password">{{ __('ui.new_password') }}</label><input class="form-control" id="password" name="password" type="password" required autocomplete="new-password"></div>
|
||||
<div class="mb-3"><label class="form-label" for="password_confirmation">{{ __('ui.password_confirmation') }}</label><input class="form-control" id="password_confirmation" name="password_confirmation" type="password" required autocomplete="new-password"></div><button class="btn btn-primary w-100" type="submit">{{ __('ui.renew_password') }}</button></form></x-auth-card></x-layouts.app>
|
||||
@@ -0,0 +1 @@
|
||||
<x-layouts.app :title="__('ui.verify_email').' — TrafficPumper'"><x-auth-card :title="__('ui.verify_heading')" :description="__('ui.verify_description')"><form method="POST" action="{{ route('verification.send') }}">@csrf<button class="btn btn-primary w-100" type="submit">{{ __('ui.resend_verification') }}</button></form></x-auth-card></x-layouts.app>
|
||||
Reference in New Issue
Block a user