mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update verify email screen, add contact admin link
This commit is contained in:
parent
d0ddb4e78e
commit
f37952d6cf
2 changed files with 5 additions and 2 deletions
|
@ -23,6 +23,7 @@ class EmailVerificationCheck
|
||||||
'i/auth/*',
|
'i/auth/*',
|
||||||
'i/verify-email',
|
'i/verify-email',
|
||||||
'log*',
|
'log*',
|
||||||
|
'site*',
|
||||||
'i/confirm-email/*',
|
'i/confirm-email/*',
|
||||||
'settings/home',
|
'settings/home',
|
||||||
'settings/email'
|
'settings/email'
|
||||||
|
|
|
@ -13,10 +13,12 @@
|
||||||
<p class="font-weight-bold mb-0">{{ session('error') }}</p>
|
<p class="font-weight-bold mb-0">{{ session('error') }}</p>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
<div class="card">
|
<div class="card shadow-none border">
|
||||||
<div class="card-header font-weight-bold bg-white">Confirm Email Address</div>
|
<div class="card-header font-weight-bold bg-white">Confirm Email Address</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="lead">You need to confirm your email address (<span class="font-weight-bold">{{Auth::user()->email}}</span>) before you can proceed.</p>
|
<p class="lead">You need to confirm your email address (<span class="font-weight-bold">{{Auth::user()->email}}</span>) before you can proceed.</p>
|
||||||
|
<p class="lead">You can change your email address <a href="/settings/email">here</a>.</p>
|
||||||
|
<p class="small">If you don't recieve an email within 30 minutes, you can <a href="/site/contact">contact the administrator</a>.</p>
|
||||||
<hr>
|
<hr>
|
||||||
<form method="post">
|
<form method="post">
|
||||||
@csrf
|
@csrf
|
||||||
|
|
Loading…
Reference in a new issue