改进 密码验证页面
This commit is contained in:
parent
d74421667f
commit
5eb35bca8e
@ -1,18 +1,20 @@
|
|||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
<div class="d-flex justify-content-center align-items-center h-screen" style="height:75vh">
|
||||||
|
<div class="text-center">
|
||||||
|
<span style="font-size: 10rem">
|
||||||
|
<i class="bi bi-key"></i>
|
||||||
|
</span>
|
||||||
<h2>{{ __('Confirm Password') }}</h2>
|
<h2>{{ __('Confirm Password') }}</h2>
|
||||||
|
|
||||||
{{ __('Please confirm your password before continuing.') }}
|
{{ __('Please confirm your password before continuing.') }}
|
||||||
|
|
||||||
<form method="POST" action="{{ route('password.confirm') }}">
|
<form method="POST" action="{{ route('password.confirm') }}">
|
||||||
@csrf
|
@csrf
|
||||||
|
|
||||||
<div class="form-group mt-3">
|
<div class="form-group mt-2">
|
||||||
<label for="password" class="text-left ml-0">{{ __('Password') }}</label>
|
|
||||||
<input id="password" type="password"
|
<input id="password" type="password"
|
||||||
class="form-control @error('password') is-invalid @enderror" name="password"
|
class="form-control text-center @error('password') is-invalid @enderror" name="password"
|
||||||
value="{{ old('password') }}" required autofocus placeholder="密码">
|
value="{{ old('password') }}" required autofocus placeholder="密码" aria-label="密码">
|
||||||
|
|
||||||
@error('password')
|
@error('password')
|
||||||
<span class="invalid-feedback" role="alert">
|
<span class="invalid-feedback" role="alert">
|
||||||
@ -26,5 +28,7 @@ class="form-control @error('password') is-invalid @enderror" name="password"
|
|||||||
</button>
|
</button>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
@endsection
|
@endsection
|
||||||
|
Loading…
Reference in New Issue
Block a user