27 lines
1.1 KiB
Twig
27 lines
1.1 KiB
Twig
{% extends 'settings/appearance/master.twig' %}
|
|
|
|
{% set mode = 'Header' %}
|
|
|
|
{% block description %}
|
|
<p>Maximum image size is {{ config('file.cover.max_width') }}x{{ config('file.cover.max_height') }} and can't be larger than {{ config('file.cover.max_file_size')|byte_symbol }}.</p>
|
|
{% endblock %}
|
|
|
|
{% block settingsContent %}
|
|
<form enctype="multipart/form-data" method="post" action="{{ route('settings.appearance.header') }}">
|
|
<input type="hidden" name="MAX_FILE_SIZE" value="{{ config('file.cover.max_file_size') }}">
|
|
<div style="text-align: center;">
|
|
<div>
|
|
<img src="{{ route('user.header', user.id) }}" alt="Your Header" class="default-avatar-setting" style="max-width: 90%; max-height: 90%;">
|
|
</div>
|
|
<div>
|
|
<input type="file" name="header">
|
|
<div style="font-size: .8em;">
|
|
(Leave upload box empty to remove header)
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<button value="{{ session_id() }}" name="session" class="inputStyling">Upload</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|