Change your password
diff --git a/www/includes/config.inc.php b/www/includes/config.inc.php
index 4f0f14f..f30f661 100644
--- a/www/includes/config.inc.php
+++ b/www/includes/config.inc.php
@@ -10,7 +10,7 @@
"uid" => array("label" => "System username", "onkeyup" => "check_entity_name_validity(document.getElementById('uid').value,'uid_div'); update_email(); check_email_validity(document.getElementById('mail').value);"),
"cn" => array("label" => "Common name", "onkeyup" => "auto_cn_update = false;"),
"mail" => array("label" => "Email", "onkeyup" => "auto_email_update = false; check_email_validity(document.getElementById('mail').value);")
- );
+ );
#Mandatory
@@ -23,6 +23,8 @@
#Optional
+ $SIMPLE_INTERFACE = ((strcasecmp(getenv('SIMPLE_INTERFACE'),'TRUE') == 0) ? TRUE : FALSE);
+
$LDAP['account_attribute'] = (getenv('LDAP_ACCOUNT_ATTRIBUTE') ? getenv('LDAP_ACCOUNT_ATTRIBUTE') : 'uid');
$LDAP['group_attribute'] = (getenv('LDAP_GROUP_ATTRIBUTE') ? getenv('LDAP_GROUP_ATTRIBUTE') : 'cn');
$LDAP['group_ou'] = (getenv('LDAP_GROUP_OU') ? getenv('LDAP_GROUP_OU') : 'groups');
diff --git a/www/log_in/index.php b/www/log_in/index.php
index 4231b41..e7e552c 100644
--- a/www/log_in/index.php
+++ b/www/log_in/index.php
@@ -50,7 +50,7 @@ else {
?>
-
+
Log in
diff --git a/www/request_account/index.php b/www/request_account/index.php
index 65e282c..71b502a 100644
--- a/www/request_account/index.php
+++ b/www/request_account/index.php
@@ -83,22 +83,31 @@ EoT;
include_once "mail_functions.inc.php";
$sent_email = send_email($ACCOUNT_REQUESTS_EMAIL,"$ORGANISATION_NAME account requests",$mail_subject,$mail_body);
- if ($sent_email) {
- $sent_email_message = " Thank you. The request was sent and the administrator will process it as soon as possible.";
- }
- else {
- $sent_email_message = " Unfortunately the request wasn't sent because of a technical problem.";
- }
- ?>
-
-
-
+ if ($sent_email) { ?>
+
+
+
+
Thank you
+
+ The request was sent and the administrator will process it as soon as possible.
+
+
+
+
+
+
+
+
+
Error
+
+ Unfortunately the account request wasn't sent because of a technical issue.
+
+
+
-