myvideogamelist.com/resources/views/auth/confirm-password.blade.php

42 lines
1.6 KiB
PHP
Raw Normal View History

<x-auth-layout>
<!--begin::Confirm Password Form-->
<form method="POST" action="{{ theme()->getPageUrl('password.confirm') }}" class="form w-100" novalidate="novalidate">
@csrf
<!--begin::Heading-->
<div class="text-center mb-10">
<!--begin::Title-->
<h1 class="text-dark mb-3">
{{ __('Confirm Password') }}
</h1>
<!--end::Title-->
<!--begin::Link-->
<div class="text-gray-400 fw-bold fs-4">
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
</div>
<!--end::Link-->
</div>
<!--begin::Heading-->
<!--begin::Input group-->
<div class="fv-row mb-10">
<label class="form-label fw-bolder text-gray-900 fs-6">{{ __('Password') }}</label>
<input class="form-control form-control-solid" type="password" name="password" autocomplete="current-password" required autofocus/>
</div>
<!--end::Input group-->
<!--begin::Actions-->
<div class="d-flex flex-wrap justify-content-center pb-lg-0">
<button type="submit" id="kt_password_reset_submit" class="btn btn-lg btn-primary fw-bolder me-4">
@include('partials.general._button-indicator')
</button>
<a href="{{ theme()->getPageUrl('login') }}" class="btn btn-lg btn-light-primary fw-bolder">{{ __('Cancel') }}</a>
</div>
<!--end::Actions-->
</form>
<!--end::Confirm Password Form-->
</x-auth-layout>