From f04f9423d630b18806748d0bc7bd931f70878cbc Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Sat, 7 Jun 2008 10:43:43 +0000 Subject: [PATCH] *** empty log message *** --- CHANGELOG.txt | 19 ++ admin/change_current_user_password.php | 106 +++++++ install.html | 409 +++++++++---------------- sql/alter2.sql | 1 + sql/en_US-demo.sql | 5 +- sql/en_US-new.sql | 3 +- themes/aqua/default.css | 102 +++++- themes/aqua/renderer.php | 13 +- themes/cool/default.css | 27 +- themes/cool/renderer.php | 13 +- themes/default/default.css | 2 +- themes/default/renderer.php | 8 +- update.html | 21 +- 13 files changed, 433 insertions(+), 296 deletions(-) create mode 100644 admin/change_current_user_password.php create mode 100644 sql/alter2.sql diff --git a/CHANGELOG.txt b/CHANGELOG.txt index b113bbb5..e432679e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,25 @@ Legend: ! -> Note $ -> Affected files +07-Jun-2008 Joe Hunt +! Changed install.html and update.html +$ install.html + update.html ++ New files, change_current_user_password.php and alter2.sql +$ /admin/change_current_user_password.php + /sql/alter2.sql +! Changed some files for layout +$ /lang/en_US/stylesheet.css + /themes/aqua/default.css + /themes/aqua/renderer.php + /themes/cool/default.css + /themes/cool/renderer.php + /themes/default/default.css + /themes/default/renderer.php +! Changed install sql scripts +$ /sql/en_US-demo.sql + /sql/en_US-new.sql + 07-Jun-2008 Janusz Dobrowolski + Added ajax functionality and ui hints to sales form entry pages. $ /sales/sales_order_entry.php diff --git a/admin/change_current_user_password.php b/admin/change_current_user_password.php new file mode 100644 index 00000000..817c94f6 --- /dev/null +++ b/admin/change_current_user_password.php @@ -0,0 +1,106 @@ +username; + + +if (isset($_GET['UpdatedID'])) +{ + display_notification_centered(_("Your password has been updated.")); +} + +function can_process() +{ + + if (strlen($_POST['password']) < 4) + { + display_error( _("The password entered must be at least 4 characters long.")); + set_focus('password'); + return false; + } + + if (strstr($_POST['password'], $_POST['user_id']) != false) + { + display_error( _("The password cannot contain the user login.")); + set_focus('password'); + return false; + } + + if ($_POST['password'] != $_POST['passwordConfirm']) + { + display_error( _("The passwords entered are not the same.")); + set_focus('password'); + return false; + } + + return true; +} + +if (isset($_POST['UPDATE_ITEM'])) +{ + + if (can_process()) + { + if (isset($selected_id)) + { + if ($_POST['password'] != "") + update_user_password($_POST['user_id'], md5($_POST['password'])); + + unset($selected_id); + meta_forward($_SERVER['PHP_SELF'], "UpdatedID=1"); + } + } +} + +start_form(); + +start_table($table_style); + +if (isset($selected_id)) +{ + //editing an existing User + + $myrow = get_user($selected_id); + + $_POST['user_id'] = $myrow["user_id"]; + hidden('selected_id', $selected_id); + hidden('user_id', $_POST['user_id']); + + label_row(_("User login:"), $_POST['user_id']); + +} +$_POST['password'] = ""; +$_POST['passwordConfirm'] = ""; + +start_row(); +label_cell(_("Password:")); +label_cell(""); +end_row(); + +start_row(); +label_cell(_("Repeat password:")); +label_cell(""); +end_row(); + +if (isset($selected_id)) +{ + table_section_title(_("Enter your new password in the fields.")); +} + +end_table(1); + +submit_add_or_update_center(!isset($selected_id)); + +end_form(); +end_page(); +?> diff --git a/install.html b/install.html index 3e50b71a..bf8a0832 100644 --- a/install.html +++ b/install.html @@ -1,320 +1,191 @@ - - +FrontAccounting - - FrontAccounting - - - -
FrontAccounting Installation
- +
FrontAccounting +Installation

Pre-requisites

- - -

 

- - - + \ No newline at end of file -- 2.30.2