blob: ca6bb603f67f391717ec1560fb0e4b6f5bc96c38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
% if ( $cgi->param('_password') ne $cgi->param('_password2') ) {
% $cgi->param('error', "The passwords do not match");
% print $cgi->redirect(popurl(2) . "access_user.html?" . $cgi->query_string);
% } else {
<% include( 'elements/process.html',
'table' => 'access_user',
'viewall_dir' => 'browse',
'copy_on_empty' => [ '_password' ],
'clear_on_error' => [ '_password', '_password2' ],
'process_m2m' => { 'link_table' => 'access_usergroup',
'target_table' => 'access_group',
},
)
%>
% }
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
</%init>
|