����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.189.186.244 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/app/views/admin/ajax/ |
Upload File : |
<form id="addSharingForm" class="form-horizontal form-label-left input_mask"> <div class="x_panel"> <div class="x_title"> <h2>Create New Share</h2> <div class="clearfix"></div> </div> <p>Use the form below to share a folder with either another user or globally on the site. If you want to share more than 1 folder, you can use the sharing functionality built into the front-end file manager. This tool only allows for 1 folder at a time at the moment.<br/><br/></p> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ t("select_account_owner", "select account owner")|title }}:</label> <div class="col-md-8 col-sm-8 col-xs-12"> <select name="created_by_user_id" id="created_by_user_id" class="form-control" onchange="updateFolderSelect(); return false;"> {% for user in users %} <option value="{{ user.id }}">{{ user.username }}</option> {% endfor %} </select> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ t("select_folder", "select folder")|title }}:</label> <div class="col-md-8 col-sm-8 col-xs-12" id="folderSelect"> <select name="folder_id" id="folder_id" class="form-control" required="required"></select> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ t("shared_with", "share with")|title }}:</label> <div class="col-md-8 col-sm-8 col-xs-12"> <select name="shared_with_user_id" id="shared_with_user_id" class="form-control"> <option>- All Users (Everyone will have access to the folder) -</option> {% for user in users %} <option value="{{ user.id }}">{{ user.username }}</option> {% endfor %} </select> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">{{ t("access_level", "access level")|title }}:</label> <div class="col-md-5 col-sm-5 col-xs-12"> <select name="share_permission_level" id="share_permission_level" class="form-control"> {% for k,accessLevel in accessLevels %} <option value="{{ k }}">{{ accessLevel }}</option> {% endfor %} </select> </div> </div> </div> </form>