diff options
| author | 2023-04-11 23:57:58 +0200 | |
|---|---|---|
| committer | 2023-04-11 23:57:58 +0200 | |
| commit | 96dfecc875f29321cd2a11441222300734aed767 (patch) | |
| tree | af65208cf3583f44e52f1f52eef5996b7cf00b4e /app/views/user/details.phtml | |
| parent | 594d118bc4a812b8a39c775b516c62b3112a2436 (diff) | |
config user settings in slider (#5094)
Diffstat (limited to 'app/views/user/details.phtml')
| -rw-r--r-- | app/views/user/details.phtml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/app/views/user/details.phtml b/app/views/user/details.phtml index af388c713..d5cfe731c 100644 --- a/app/views/user/details.phtml +++ b/app/views/user/details.phtml @@ -1,16 +1,13 @@ <?php /** @var FreshRSS_View $this */ - $this->partial('aside_configure'); ?> <?php $isDefault = $this->details['is_default']; ?> <?php $isAdmin = $this->details['is_admin']; ?> <?php $enabled = $this->details['enabled']; ?> -<main class="post"> - <a href="<?= _url('user', 'manage'); ?>"><?= _t('admin.user.back_to_manage'); ?></a> - - <h1><?= $this->username ?><?php if ($isAdmin) echo ' ― ', _t('admin.user.admin'); ?></h1> +<div class="post"> + <h2><?= $this->username ?><?php if ($isAdmin) echo ' ― ', _t('admin.user.admin'); ?></h2> <form method="post" action="<?= _url('user', 'manage', 'username', $this->username); ?>"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken(); ?>" /> @@ -87,4 +84,4 @@ <div> </div> </form> -</main> +</div> |
