Hey guys Im working on having a horizontal login bar. So far everything is fine, all items are in 1 line but the following links:
* Register
* Forgot password?
I only mannaged them to get next to each other but I cant get them to be up with the 1st line. Can someone help me mod the user.module?
switch ($delta) {
case 0:
// For usability's sake, avoid showing two login forms on one page.
if (!$user->uid && !(arg(0) == 'user' && !is_numeric(arg(1)))) {
// Unset the time, if any. This prevents a 404 if a user relogs in
// on the page they were sent to when they logged out. See
// user_login_submit() for explanation of the time parameter.
unset($_GET['time']);
$form['#action'] = url($_GET['q'], drupal_get_destination());
$form['#id'] = 'user-login-form';
$form['name'] = array('#type' => 'textfield',
'#title' => t('Username'),
'#maxlength' => 60,
'#size' => 15,
'#required' => TRUE,
);
$form['pass'] = array('#type' => 'password',
'#title' => t('Password'),
'#size' => 15,
'#required' => TRUE,
);
$form['submit'] = array('#type' => 'submit',
'#value' => t('Log in'),
);
if (variable_get('user_register', 1)) {