summaryrefslogtreecommitdiff
path: root/httemplate/pref/pref-process.html
diff options
context:
space:
mode:
authorivan <ivan>2006-11-13 01:09:17 +0000
committerivan <ivan>2006-11-13 01:09:17 +0000
commit3758ad3cb13752bbbebb2c42fcc398bdb1ffdc6a (patch)
tree79abd2ad06733f7b515250d6df4d33767c814209 /httemplate/pref/pref-process.html
parent33f61386d77a035fd59a15ccfea43d0fbff911d2 (diff)
add preference page, start with just a password changer
Diffstat (limited to 'httemplate/pref/pref-process.html')
-rw-r--r--httemplate/pref/pref-process.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/httemplate/pref/pref-process.html b/httemplate/pref/pref-process.html
new file mode 100644
index 000000000..a342a51ec
--- /dev/null
+++ b/httemplate/pref/pref-process.html
@@ -0,0 +1,26 @@
+% my $error = '';
+%
+% my $access_user = qsearchs( 'access_user', {
+% 'username' => getotaker,
+% '_password' => $cgi->param('_password'),
+% } );
+%
+% $error = 'Current password incorrect; password not changed'
+% unless $access_user;
+%
+% $error ||= "New passwords don't match"
+% unless $cgi->param('new_password') eq $cgi->param('new_password2');
+%
+% $error ||= "No new password entered"
+% unless length($cgi->param('new_password'));
+%
+% $access_user->_password($cgi->param('new_password')) unless $error;
+% $error ||= $access_user->replace;
+%
+% if ( $error ) {
+% $cgi->param('error', $error);
+% print $cgi->redirect(popurl(1). "pref.html?". $cgi->query_string );
+% } else {
+<% include('/elements/header.html', 'Password changed') %>
+<% include('/elements/footer.html') %>
+% }