aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-06-11 16:51:51 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-06-11 16:51:51 +0000
commit2ae5e96cc9d928a8d13c01d5bf152b99d18aec17 (patch)
tree05353beed49792a812654b988ff7c0795075eed7 /pages
parent342b1184a70f7729d75c52d472a8d3652156f5e6 (diff)
downloadelgg-2ae5e96cc9d928a8d13c01d5bf152b99d18aec17.tar.gz
elgg-2ae5e96cc9d928a8d13c01d5bf152b99d18aec17.tar.bz2
Fixes #3556 limiting width of account text boxes
git-svn-id: http://code.elgg.org/elgg/trunk@9177 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'pages')
-rw-r--r--pages/account/forgotten_password.php4
-rw-r--r--pages/account/register.php7
-rw-r--r--pages/account/reset_password.php2
3 files changed, 10 insertions, 3 deletions
diff --git a/pages/account/forgotten_password.php b/pages/account/forgotten_password.php
index 7679eaa55..bf6ef87e0 100644
--- a/pages/account/forgotten_password.php
+++ b/pages/account/forgotten_password.php
@@ -13,7 +13,9 @@ if (elgg_is_logged_in()) {
$title = elgg_echo("user:password:lost");
$content = elgg_view_title($title);
-$content .= elgg_view_form('user/requestnewpassword');
+$content .= elgg_view_form('user/requestnewpassword', array(
+ 'class' => 'elgg-form-account',
+));
$body = elgg_view_layout("one_column", array('content' => $content));
diff --git a/pages/account/register.php b/pages/account/register.php
index 58544ef49..5eb2b4001 100644
--- a/pages/account/register.php
+++ b/pages/account/register.php
@@ -35,7 +35,10 @@ $register_url = elgg_get_site_url() . 'action/register';
if (elgg_get_config('https_login')) {
$register_url = str_replace("http:", "https:", $register_url);
}
-$form_params = array('action' => $register_url);
+$form_params = array(
+ 'action' => $register_url,
+ 'class' => 'elgg-form-account float',
+);
$body_params = array(
'friend_guid' => $friend_guid,
@@ -43,6 +46,8 @@ $body_params = array(
);
$content .= elgg_view_form('register', $form_params, $body_params);
+$content .= elgg_view('help/register');
+
$body = elgg_view_layout("one_column", array('content' => $content));
echo elgg_view_page($title, $body);
diff --git a/pages/account/reset_password.php b/pages/account/reset_password.php
index 019ec3add..6515bfc5d 100644
--- a/pages/account/reset_password.php
+++ b/pages/account/reset_password.php
@@ -25,7 +25,7 @@ $params = array(
'guid' => $user_guid,
'code' => $code,
);
-$form = elgg_view_form('user/passwordreset', array(), $params);
+$form = elgg_view_form('user/passwordreset', array('class' => 'elgg-form-account'), $params);
$title = elgg_echo('resetpassword');
$content = elgg_view_title(elgg_echo('resetpassword')) . $form;