better instructions for login

darcs-hash:20080701180611-84dde-ca0ed035476469fea28edfb2e1b8cbc2aa3e9d41.gz
This commit is contained in:
Evan Prodromou 2008-07-01 14:06:11 -04:00
parent fe7beeb64b
commit 5593d4a50b
1 changed files with 12 additions and 3 deletions

View File

@ -82,13 +82,22 @@ class LoginAction extends Action {
common_show_footer();
}
function get_instructions() {
return _t('Login with your username and password. ' .
'Don\'t have a username yet? ' .
'[Register](%%action.register%%) a new account, or ' .
'try [OpenID](%%action.openidlogin%%). ');
}
function show_top($error=NULL) {
if ($error) {
common_element('p', 'error', $error);
} else {
common_element('p', 'instructions',
_t('Login with your username and password. ' .
'Don\'t have a username yet? Choose register above. '));
$instr = $this->get_instructions();
$output = common_markup_to_html($instr);
common_element_start('p', 'instructions');
common_raw($output);
common_element_end('p');
}
}
}