$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));
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,
);
$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);
'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;
padding-right: 10px;
}
+.elgg-form-account input[type="text"],
+.elgg-form-account input[type="password"] {
+ width: 300px;
+}
+
/* ***************************************
FRIENDS PICKER
*************************************** */
<?php echo elgg_echo('user:password:text'); ?>
</div>
<div>
- <label><?php echo elgg_echo('username'); ?></label>
+ <label><?php echo elgg_echo('username'); ?></label><br />
<?php echo elgg_view('input/text', array('name' => 'username')); ?>
</div>
<?php echo elgg_view('input/captcha'); ?>