This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/templates/yuuno/settings/appearance.background.twig

25 lines
1.2 KiB
Twig
Raw Normal View History

2016-01-17 01:58:31 +00:00
{% if user.permission(constant('Sakura\\Perms\\Site::CHANGE_BACKGROUND')) %}
2015-08-21 22:07:45 +00:00
<form enctype="multipart/form-data" method="post" action="{{ setting.action }}">
<input type="hidden" name="sessid" value="{{ php.sessionid }}" />
<input type="hidden" name="timestamp" value="{{ php.time }}" />
<input type="hidden" name="mode" value="background" />
<input type="hidden" name="MAX_FILE_SIZE" value="{{ background.max_size }}" />
<div style="text-align: center;">
<div>
<img src="/bg/{{ user.id }}" alt="Your Background" class="default-avatar-setting" style="max-width: 90%; max-height: 90%;" />
2015-08-19 19:44:01 +00:00
</div>
2015-08-21 22:07:45 +00:00
<div>
<input type="file" name="background" />
<div style="font-size: .8em;">
(Leave upload box empty to remove background)
</div>
</div>
<div>
<input type="submit" value="Submit" name="submit" class="inputStyling" />
2015-08-19 19:44:01 +00:00
</div>
2015-06-19 16:12:44 +00:00
</div>
2015-08-21 22:07:45 +00:00
</form>
{% else %}
<h1 class="stylised" style="margin: 2em auto; text-align: center;">You do not have the permission to change your background.</h1>
{% endif %}