mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 23:20:35 -06:00
Instead of styling defined inside a page file, these settings are now kept in a dedicated css file. This has several advantages: - It comes much easier to maintain styling, all css files are easy to find and update - Browser can cache css files, which may improve page loading time - Separate theme css files exist, no more need to make selection by coding - This PR is a 1-to-1 move of existing inline styling to css files - In future more optimization can be made by consolidating css files
41 lines
2.1 KiB
Plaintext
41 lines
2.1 KiB
Plaintext
Menu="Users"
|
|
Title="Users"
|
|
Tag="users"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2023, Lime Technology
|
|
* Copyright 2012-2023, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<?
|
|
$submenu = !empty($display['users']) && substr($display['users'],0,5)!='Tasks';
|
|
if ($submenu) $path = './Users';
|
|
ksort($users);
|
|
?>
|
|
<div id="title" class="title"><span class="left"><i class="fa fa-bell title"></i>_(Management Access)_</span></div>
|
|
<?$img = "/boot/config/plugins/dynamix/users/root.png"?>
|
|
<div class="user-list" style="text-align:center"><a class="<?=(!empty($users['root']['desc']) ? 'info' : '')?>" href="<?=$path?>/UserEdit?name=root"><img src="<?=(file_exists($img) ? autov($img) : '/webGui/images/user.png')?>" class="picture" border="0" width="48" height="48"><br>root<span><?=htmlspecialchars($users['root']['desc'])?></span></a></div>
|
|
|
|
<div class="title"><span class="left"><i class="fa fa-cloud title"></i>_(Shares Access)_</span></div>
|
|
<?foreach ($users as $user):?>
|
|
<?if ($user['name'] == 'root') continue;?>
|
|
<?$img = "/boot/config/plugins/dynamix/users/{$user['name']}.png"?>
|
|
<div class="user-list" style="text-align:center"><a class="<?=(!empty($user['desc']) ? 'info' : '')?>" href="<?=$path?>/UserEdit?name=<?=htmlspecialchars(urlencode($user['name']))?>"><img src="<?=(file_exists($img) ? autov($img) : '/webGui/images/user.png')?>" class="picture" border="0" width="48" height="48"><br><?=htmlspecialchars($user['name'])?><span><?=htmlspecialchars($user['desc'])?></span></a></div>
|
|
<?endforeach;?>
|
|
|
|
<?if (count($users)==1):?>
|
|
_(No users are defined)_. _(Click **Add User** to create a user for remote shares access)_
|
|
<?endif;?>
|
|
|
|
<div style='clear:both'></div>
|
|
<form method="POST" action="<?=$path?>/UserAdd">
|
|
<input type="submit" value="_(Add User)_"><?if ($submenu):?><input type="button" value="_(Done)_" onclick="done()"><?endif;?>
|
|
</form>
|