better instructions

darcs-hash:20081202194816-5ed1f-93a18c7b978950a770b833e7dea9e1fd5bb71de8.gz
This commit is contained in:
Evan Prodromou 2008-12-02 14:48:16 -05:00
parent 6a96639b24
commit f84dbce164
1 changed files with 6 additions and 3 deletions

View File

@ -153,10 +153,13 @@ class RegisterAction extends Action {
if ($error) {
common_element('p', 'error', $error);
} else {
$instr = common_markup_to_html(_('With this form you can create a new account. ' .
'You can then post notices and link up to friends and colleagues. '.
'(Have an [OpenID](http://openid.net/)? ' .
'Try our [OpenID registration](%%action.openidlogin%%)!)'));
common_element_start('div', 'instructions');
common_element('p', NULL,
_('With this form you can create a new account. You can then post notices and link up to friends and colleagues. '.
'(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)'));
common_raw($instr);
common_element_end('div');
}
}