@rejetto
It is the purpose of this sharing, it is one more for the user, but not an exclusive thing for administrator's panel, the administrator authorizes which users have this possibility, quite as that to change their password, I classify the rerouting in the same category of changig password
users groups: can change password; can change redirect; can change ......(another idea

)
I remember that some administrators(directors) wanted to allow the guest to register himself free on hfs, without passing by a panel of administration

If there is an interesting thing to be retained in this topic it is the way is masked the password button, which do not take place to be still visible according to me, so it is possible to put the other functions in this place

@r][m
Don't suppose you have a (non ajax) super admin panel page with these functions
you'd care to share?
I am always ready to share, since we do not discourage the willingnesses for new ideas, anything who can not please any, can be very useful for the others. Because of the existence of the button password, I think that the redirect is more acceptable one in the template because the administrator keeps the hand put on authorizations.
The ajax was introduced by the boss into default template and I have of to adapt myself well in spite of me, I preferred sincerely the ancient version made of macros and of simple but understandable javascript.
Besides the ajax brings only a shape of display different from the ancient version of the template with its checkboxs and the mode multi-page which I had set up
If you want a version not ajax there is nothing more simple, it is enough to be supposed to be by a form as for the admin panel already quite a lot of time ago.
the same without ajax , they are two forms: first simulate ajax, the second works as admin panel with intermediate page
<form method=post action="/~changeredirect1">
<input name="redirect" type="hidden" value="%folder%">
<input name="action" type="submit" value="redirect1">
</form>
<form method=post action="/~changeredirect2">
<input name="redirect" type="hidden" value="%folder%">
<input name="action" type="submit" value="redirect2">
</form>
[changeredirect1|no log]
{.if|{.and|{.member of|can change redirect.}|{.postvar|action.}/and.}|
{:{.set account||redirect={.decodeuri|{.postvar|redirect.}.}.}:}
.}
{.comment| the next macro works as a back link.}
{.add header|Location:{.decodeuri|{.postvar|redirect.}.}.}
[changeredirect2|no log]
<html>
<head>
<title>Redirect to Folder Changer</title>
</head>
<body>
{.if|{.and|{.member of|can change redirect.}|{.postvar|action.}/and.}|{:
{.set account||redirect={.decodeuri|{.postvar|redirect.}.}.}
<p><font size="4">Redirect to folder changed!</font></p>
<p>Click <a href="{.postvar|redirect.}">here</a> to return.</p>
:}|{.section|error.}.}
</body>
</html>
[error]
<title>Error</title>
</head>
<body bgcolor="#000000">
<p align="center"> </p>
<p align="center"> </p>
<p align="center"><font size="6" color="#FFFFFF"><b>You do not have sufficient privileges to access this feature.</b></font></p>
<p align="center"> </p>
<p align="center"> </p>
<p align="center"><font size="6" color="#FFFFFF"><b>You must be an administrator.</b></font></p>
</body>
</html>