mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update contact view
This commit is contained in:
parent
fbf483366c
commit
427c4320c8
1 changed files with 9 additions and 5 deletions
|
@ -9,10 +9,14 @@
|
|||
<section>
|
||||
@auth
|
||||
<p class="lead">
|
||||
@if(filter_var(config('instance.email'), FILTER_VALIDATE_EMAIL) == true)
|
||||
You can contact the admins by sending an email to {{config('instance.email')}} or using the form below.
|
||||
@else
|
||||
@if(config('instance.email') && config('instance.contact.enabled'))
|
||||
You can contact the admins by sending an email to <span class="font-weight-bold">{{config('instance.email')}}</span> or by using the form below.
|
||||
@elseif(config('instance.email') && !config('instance.contact.enabled'))
|
||||
You can contact the admins by sending an email to <span class="font-weight-bold">{{config('instance.email')}}</span>.
|
||||
@elseif(!config('instance.email') && config('instance.contact.enabled'))
|
||||
You can contact the admins by using the form below.
|
||||
@else
|
||||
The admins have not set a contact email address.
|
||||
@endif
|
||||
</p>
|
||||
@if(config('instance.contact.enabled'))
|
||||
|
@ -34,8 +38,8 @@
|
|||
<p class="lead">
|
||||
@if(filter_var(config('instance.email'), FILTER_VALIDATE_EMAIL) == true)
|
||||
You can contact the admins by sending an email to {{config('instance.email')}}.
|
||||
@else
|
||||
The admins have not listed any public email. Please log in to send a message.
|
||||
@elseif (config('instance.contact.enabled'))
|
||||
The admins have not set a contact email address. Please log in to send a message.
|
||||
@endif
|
||||
</p>
|
||||
@endauth
|
||||
|
|
Loading…
Reference in a new issue