改进 验证页面

This commit is contained in:
iVampireSP.com 2023-02-28 19:42:49 +08:00
parent 2777513458
commit d74421667f
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -1,11 +1,18 @@
@extends('layouts.app')
@section('content')
<h2>验证邮件地址</h2>
<div class="d-flex justify-content-center align-items-center h-screen" style="height: 80vh">
<div class="text-center">
@if (session('resent'))
{{ __('A fresh verification link has been sent to your email address.') }}
<span style="font-size: 10rem">
<i class="bi bi-envelope-check"></i>
</span>
<h5>{{ __('A fresh verification link has been sent to your email address.') }}</h5>
@else
<span style="font-size: 10rem">
<i class="bi bi-envelope-at"></i>
</span>
<h3>验证电子邮件地址</h3>
{{ __('Before proceeding, please check your email for a verification link.') }}
{{ __('If you did not receive the email') }},
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
@ -17,4 +24,8 @@ class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another
<p>我们将会删除超过 3 天没有验证邮箱的用户。</p>
@endif
</div>
</div>
@endsection