removed placeholder image change tab
This commit is contained in:
parent
911b61f221
commit
d6abd02a3b
2 changed files with 0 additions and 13 deletions
|
@ -1,7 +0,0 @@
|
||||||
<h1>Background</h1>
|
|
||||||
<form enctype="multipart/form-data" method="post" action="{{ route('user.background', profile.id) }}" style="margin: 1em">
|
|
||||||
<input type="hidden" name="MAX_FILE_SIZE" value="{{ config('file.background.max_file_size') }}">
|
|
||||||
<input type="hidden" name="session" value="{{ session_id() }}">
|
|
||||||
<input type="file" name="file">
|
|
||||||
<button>upload</button>
|
|
||||||
</form>
|
|
|
@ -267,9 +267,6 @@
|
||||||
<a class="profile__interactions-item fa fa-reply" title="View {{ profile.username }}'s posts" href="#_posts" onclick="profileMode('posts');"></a>
|
<a class="profile__interactions-item fa fa-reply" title="View {{ profile.username }}'s posts" href="#_posts" onclick="profileMode('posts');"></a>
|
||||||
<a class="profile__interactions-item fa fa-star" title="View {{ profile.username }}'s friends" href="#_friends" onclick="profileMode('friends');"></a>
|
<a class="profile__interactions-item fa fa-star" title="View {{ profile.username }}'s friends" href="#_friends" onclick="profileMode('friends');"></a>
|
||||||
<a class="profile__interactions-item fa fa-comments-o" title="View {{ profile.username }}'s profile comments" href="#_comments" onclick="profileMode('comments');"></a>
|
<a class="profile__interactions-item fa fa-comments-o" title="View {{ profile.username }}'s profile comments" href="#_comments" onclick="profileMode('comments');"></a>
|
||||||
{% if (profile.isActive and profile.id == user.id) or user.perms.manageProfileImages %}
|
|
||||||
<a class="profile__interactions-item fa fa-picture-o" title="Edit your avatar, background and header" href="#_images" onclick="profileMode('images');"></a>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
{% if user.isActive %}
|
{% if user.isActive %}
|
||||||
<div class="profile__actions">
|
<div class="profile__actions">
|
||||||
|
@ -320,9 +317,6 @@
|
||||||
<div id="profile-mode-comments" class="hidden">
|
<div id="profile-mode-comments" class="hidden">
|
||||||
{% include 'profile/comments.twig' %}
|
{% include 'profile/comments.twig' %}
|
||||||
</div>
|
</div>
|
||||||
<div id="profile-mode-images" class="hidden">
|
|
||||||
{% include 'profile/images.twig' %}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="profile__data">
|
<div class="profile__data">
|
||||||
<table style="width: 100%;">
|
<table style="width: 100%;">
|
||||||
|
|
Reference in a new issue