|
data['name'], 'text', array(
'class' => 'loginText',
'id' => 'wpName1',
'tabindex' => '1',
'size' => '20',
'required'
# Can't do + array( 'autofocus' ) because + for arrays in PHP
# only works right for associative arrays! Thanks, PHP.
) + ( $this->data['name'] ? array() : array( 'autofocus' => '' ) ) ); ?>
|
msg( 'yourdomainname' ) ?> |
|
haveData( 'extrafields' ) ) {
echo $this->data['extrafields'];
}
if( $this->data['canremember'] ) { ?>
|
text(), 'submit', array(
'id' => 'wpLoginAttempt',
'tabindex' => '9'
) );
if ( $this->data['useemail'] && $this->data['canreset'] ) {
if( $this->data['resetlink'] === true ){
echo ' ';
echo Linker::link(
SpecialPage::getTitleFor( 'PasswordReset' ),
wfMessage( 'userlogin-resetlink' )
);
} elseif( $this->data['resetlink'] === null ) {
echo ' ';
echo Html::input(
'wpMailmypassword',
wfMessage( 'mailmypassword' )->text(),
'submit', array(
'id' => 'wpMailmypassword',
'tabindex' => '10'
)
);
}
} ?>
|