(bug 13015, bug 18347, bug 18996, bug 20473, bug 23669, bug 28244) separate the passw...
[lhc/web/wiklou.git] / includes / templates / Userlogin.php
1 <?php
2 /**
3 * Html forms for user login and account creation
4 *
5 * @file
6 * @ingroup Templates
7 */
8
9 /**
10 * @defgroup Templates Templates
11 */
12
13 if( !defined( 'MEDIAWIKI' ) ) die( -1 );
14
15 /**
16 * HTML template for Special:Userlogin form
17 * @ingroup Templates
18 */
19 class UserloginTemplate extends QuickTemplate {
20 function execute() {
21 if( $this->data['message'] ) {
22 ?>
23 <div class="<?php $this->text('messagetype') ?>box">
24 <?php if ( $this->data['messagetype'] == 'error' ) { ?>
25 <strong><?php $this->msg( 'loginerror' )?></strong><br />
26 <?php } ?>
27 <?php $this->html('message') ?>
28 </div>
29 <div class="visualClear"></div>
30 <?php } ?>
31
32 <div id="loginstart"><?php $this->msgWiki( 'loginstart' ); ?></div>
33 <div id="userloginForm">
34 <form name="userlogin" method="post" action="<?php $this->text('action') ?>">
35 <h2><?php $this->msg('login') ?></h2>
36 <p id="userloginlink"><?php $this->html('link') ?></p>
37 <?php $this->html('header'); /* pre-table point for form plugins... */ ?>
38 <div id="userloginprompt"><?php $this->msgWiki('loginprompt') ?></div>
39 <?php if( @$this->haveData( 'languages' ) ) { ?><div id="languagelinks"><p><?php $this->html( 'languages' ); ?></p></div><?php } ?>
40 <table>
41 <tr>
42 <td class="mw-label"><label for='wpName1'><?php $this->msg('yourname') ?></label></td>
43 <td class="mw-input">
44 <?php
45 echo Html::input( 'wpName', $this->data['name'], 'text', array(
46 'class' => 'loginText',
47 'id' => 'wpName1',
48 'tabindex' => '1',
49 'size' => '20',
50 'required'
51 # Can't do + array( 'autofocus' ) because + for arrays in PHP
52 # only works right for associative arrays! Thanks, PHP.
53 ) + ( $this->data['name'] ? array() : array( 'autofocus' => '' ) ) ); ?>
54
55 </td>
56 </tr>
57 <tr>
58 <td class="mw-label"><label for='wpPassword1'><?php $this->msg('yourpassword') ?></label></td>
59 <td class="mw-input">
60 <?php
61 echo Html::input( 'wpPassword', null, 'password', array(
62 'class' => 'loginPassword',
63 'id' => 'wpPassword1',
64 'tabindex' => '2',
65 'size' => '20'
66 ) + ( $this->data['name'] ? array( 'autofocus' ) : array() ) ); ?>
67
68 </td>
69 </tr>
70 <?php if( isset( $this->data['usedomain'] ) && $this->data['usedomain'] ) {
71 $doms = "";
72 foreach( $this->data['domainnames'] as $dom ) {
73 $doms .= "<option>" . htmlspecialchars( $dom ) . "</option>";
74 }
75 ?>
76 <tr id="mw-user-domain-section">
77 <td class="mw-label"><?php $this->msg( 'yourdomainname' ) ?></td>
78 <td class="mw-input">
79 <select name="wpDomain" value="<?php $this->text( 'domain' ) ?>"
80 tabindex="3">
81 <?php echo $doms ?>
82 </select>
83 </td>
84 </tr>
85 <?php }
86
87 if( $this->haveData( 'extrafields' ) ) {
88 echo $this->data['extrafields'];
89 }
90
91 if( $this->data['canremember'] ) { ?>
92 <tr>
93 <td></td>
94 <td class="mw-input">
95 <?php
96 global $wgCookieExpiration, $wgLang;
97 echo Xml::checkLabel(
98 wfMsgExt( 'remembermypassword', 'parsemag', $wgLang->formatNum( ceil( $wgCookieExpiration / ( 3600 * 24 ) ) ) ),
99 'wpRemember',
100 'wpRemember',
101 $this->data['remember'],
102 array( 'tabindex' => '8' )
103 )
104 ?>
105 </td>
106 </tr>
107 <?php } ?>
108 <?php if( $this->data['cansecurelogin'] ) { ?>
109 <tr>
110 <td></td>
111 <td class="mw-input">
112 <?php
113 echo Xml::checkLabel(
114 wfMsg( 'securelogin-stick-https' ),
115 'wpStickHTTPS',
116 'wpStickHTTPS',
117 $this->data['stickHTTPS'],
118 array( 'tabindex' => '9' )
119 );
120 ?>
121 </td>
122 </tr>
123 <?php } ?>
124 <tr>
125 <td></td>
126 <td class="mw-submit">
127 <?php
128 echo Html::input( 'wpLoginAttempt', wfMsg( 'login' ), 'submit', array(
129 'id' => 'wpLoginAttempt',
130 'tabindex' => '9'
131 ) );
132 if ( $this->data['useemail'] && $this->data['canreset'] ) {
133 if( $this->data['resetlink'] === true ){
134 echo '&#160;';
135 echo Linker::link(
136 SpecialPage::getTitleFor( 'PasswordReset' ),
137 wfMessage( 'userlogin-resetlink' )
138 );
139 } elseif( $this->data['resetlink'] === null ) {
140 echo '&#160;';
141 echo Html::input( 'wpMailmypassword', wfMsg( 'mailmypassword' ), 'submit', array(
142 'id' => 'wpMailmypassword',
143 'tabindex' => '10'
144 ) );
145 }
146 } ?>
147
148 </td>
149 </tr>
150 </table>
151 <?php if( @$this->haveData( 'uselang' ) ) { ?><input type="hidden" name="uselang" value="<?php $this->text( 'uselang' ); ?>" /><?php } ?>
152 <?php if( @$this->haveData( 'token' ) ) { ?><input type="hidden" name="wpLoginToken" value="<?php $this->text( 'token' ); ?>" /><?php } ?>
153 </form>
154 </div>
155 <div id="loginend"><?php $this->msgWiki( 'loginend' ); ?></div>
156 <?php
157
158 }
159 }
160
161 /**
162 * @ingroup Templates
163 */
164 class UsercreateTemplate extends QuickTemplate {
165 function addInputItem( $name, $value, $type, $msg, $helptext = false ) {
166 $this->data['extraInput'][] = array(
167 'name' => $name,
168 'value' => $value,
169 'type' => $type,
170 'msg' => $msg,
171 'helptext' => $helptext,
172 );
173 }
174
175 function execute() {
176 if( $this->data['message'] ) {
177 ?>
178 <div class="<?php $this->text('messagetype') ?>box">
179 <?php if ( $this->data['messagetype'] == 'error' ) { ?>
180 <strong><?php $this->msg( 'loginerror' )?></strong><br />
181 <?php } ?>
182 <?php $this->html('message') ?>
183 </div>
184 <div class="visualClear"></div>
185 <?php } ?>
186
187 <div id="signupstart"><?php $this->msgWiki( 'signupstart' ); ?></div>
188 <div id="userlogin">
189
190 <form name="userlogin2" id="userlogin2" method="post" action="<?php $this->text('action') ?>">
191 <h2><?php $this->msg('createaccount') ?></h2>
192 <p id="userloginlink"><?php $this->html('link') ?></p>
193 <?php $this->html('header'); /* pre-table point for form plugins... */ ?>
194 <?php if( @$this->haveData( 'languages' ) ) { ?><div id="languagelinks"><p><?php $this->html( 'languages' ); ?></p></div><?php } ?>
195 <table>
196 <tr>
197 <td class="mw-label"><label for='wpName2'><?php $this->msg('yourname') ?></label></td>
198 <td class="mw-input">
199 <?php
200 echo Html::input( 'wpName', $this->data['name'], 'text', array(
201 'class' => 'loginText',
202 'id' => 'wpName2',
203 'tabindex' => '1',
204 'size' => '20',
205 'required',
206 'autofocus'
207 ) ); ?>
208 </td>
209 </tr>
210 <tr>
211 <td class="mw-label"><label for='wpPassword2'><?php $this->msg('yourpassword') ?></label></td>
212 <td class="mw-input">
213 <?php
214 echo Html::input( 'wpPassword', null, 'password', array(
215 'class' => 'loginPassword',
216 'id' => 'wpPassword2',
217 'tabindex' => '2',
218 'size' => '20'
219 ) + User::passwordChangeInputAttribs() ); ?>
220 </td>
221 </tr>
222 <?php if( $this->data['usedomain'] ) {
223 $doms = "";
224 foreach( $this->data['domainnames'] as $dom ) {
225 $doms .= "<option>" . htmlspecialchars( $dom ) . "</option>";
226 }
227 ?>
228 <tr>
229 <td class="mw-label"><?php $this->msg( 'yourdomainname' ) ?></td>
230 <td class="mw-input">
231 <select name="wpDomain" value="<?php $this->text( 'domain' ) ?>"
232 tabindex="3">
233 <?php echo $doms ?>
234 </select>
235 </td>
236 </tr>
237 <?php } ?>
238 <tr>
239 <td class="mw-label"><label for='wpRetype'><?php $this->msg('yourpasswordagain') ?></label></td>
240 <td class="mw-input">
241 <?php
242 echo Html::input( 'wpRetype', null, 'password', array(
243 'class' => 'loginPassword',
244 'id' => 'wpRetype',
245 'tabindex' => '4',
246 'size' => '20'
247 ) + User::passwordChangeInputAttribs() ); ?>
248 </td>
249 </tr>
250 <tr>
251 <?php if( $this->data['useemail'] ) { ?>
252 <td class="mw-label"><label for='wpEmail'><?php $this->msg('youremail') ?></label></td>
253 <td class="mw-input">
254 <?php
255 echo Html::input( 'wpEmail', $this->data['email'], 'email', array(
256 'class' => 'loginText',
257 'id' => 'wpEmail',
258 'tabindex' => '5',
259 'size' => '20'
260 ) ); ?>
261 <div class="prefsectiontip">
262 <?php // duplicated in Preferences.php profilePreferences()
263 if( $this->data['emailrequired'] ) {
264 $this->msgWiki('prefs-help-email-required');
265 } else {
266 $this->msgWiki('prefs-help-email');
267 }
268 if( $this->data['emailothers'] ) {
269 $this->msgWiki('prefs-help-email-others');
270 } ?>
271 </div>
272 </td>
273 <?php } ?>
274 <?php if( $this->data['userealname'] ) { ?>
275 </tr>
276 <tr>
277 <td class="mw-label"><label for='wpRealName'><?php $this->msg('yourrealname') ?></label></td>
278 <td class="mw-input">
279 <input type='text' class='loginText' name="wpRealName" id="wpRealName"
280 tabindex="6"
281 value="<?php $this->text('realname') ?>" size='20' />
282 <div class="prefsectiontip">
283 <?php $this->msgWiki('prefs-help-realname'); ?>
284 </div>
285 </td>
286 <?php } ?>
287 <?php if( $this->data['usereason'] ) { ?>
288 </tr>
289 <tr>
290 <td class="mw-label"><label for='wpReason'><?php $this->msg('createaccountreason') ?></label></td>
291 <td class="mw-input">
292 <input type='text' class='loginText' name="wpReason" id="wpReason"
293 tabindex="7"
294 value="<?php $this->text('reason') ?>" size='20' />
295 </td>
296 <?php } ?>
297 </tr>
298 <?php if( $this->data['canremember'] ) { ?>
299 <tr>
300 <td></td>
301 <td class="mw-input">
302 <?php
303 global $wgCookieExpiration, $wgLang;
304 echo Xml::checkLabel(
305 wfMsgExt( 'remembermypassword', 'parsemag', $wgLang->formatNum( ceil( $wgCookieExpiration / ( 3600 * 24 ) ) ) ),
306 'wpRemember',
307 'wpRemember',
308 $this->data['remember'],
309 array( 'tabindex' => '8' )
310 )
311 ?>
312 </td>
313 </tr>
314 <?php }
315
316 $tabIndex = 9;
317 if ( isset( $this->data['extraInput'] ) && is_array( $this->data['extraInput'] ) ) {
318 foreach ( $this->data['extraInput'] as $inputItem ) { ?>
319 <tr>
320 <?php
321 if ( !empty( $inputItem['msg'] ) && $inputItem['type'] != 'checkbox' ) {
322 ?><td class="mw-label"><label for="<?php
323 echo htmlspecialchars( $inputItem['name'] ); ?>"><?php
324 $this->msgWiki( $inputItem['msg'] ) ?></label><?php
325 } else {
326 ?><td><?php
327 }
328 ?></td>
329 <td class="mw-input">
330 <input type="<?php echo htmlspecialchars( $inputItem['type'] ) ?>" name="<?php
331 echo htmlspecialchars( $inputItem['name'] ); ?>"
332 tabindex="<?php echo $tabIndex++; ?>"
333 value="<?php
334 if ( $inputItem['type'] != 'checkbox' ) {
335 echo htmlspecialchars( $inputItem['value'] );
336 } else {
337 echo '1';
338 }
339 ?>" id="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
340 <?php
341 if ( $inputItem['type'] == 'checkbox' && !empty( $inputItem['value'] ) )
342 echo 'checked="checked"';
343 ?> /> <?php
344 if ( $inputItem['type'] == 'checkbox' && !empty( $inputItem['msg'] ) ) {
345 ?>
346 <label for="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"><?php
347 $this->msgHtml( $inputItem['msg'] ) ?></label><?php
348 }
349 if( $inputItem['helptext'] !== false ) {
350 ?>
351 <div class="prefsectiontip">
352 <?php $this->msgWiki( $inputItem['helptext'] ); ?>
353 </div>
354 <?php } ?>
355 </td>
356 </tr>
357 <?php
358
359 }
360 }
361 ?>
362 <tr>
363 <td></td>
364 <td class="mw-submit">
365 <input type='submit' name="wpCreateaccount" id="wpCreateaccount"
366 tabindex="<?php echo $tabIndex++; ?>"
367 value="<?php $this->msg('createaccount') ?>" />
368 <?php if( $this->data['createemail'] ) { ?>
369 <input type='submit' name="wpCreateaccountMail" id="wpCreateaccountMail"
370 tabindex="<?php echo $tabIndex++; ?>"
371 value="<?php $this->msg('createaccountmail') ?>" />
372 <?php } ?>
373 </td>
374 </tr>
375 </table>
376 <?php if( @$this->haveData( 'uselang' ) ) { ?><input type="hidden" name="uselang" value="<?php $this->text( 'uselang' ); ?>" /><?php } ?>
377 <?php if( @$this->haveData( 'token' ) ) { ?><input type="hidden" name="wpCreateaccountToken" value="<?php $this->text( 'token' ); ?>" /><?php } ?>
378 </form>
379 </div>
380 <div id="signupend"><?php $this->msgWiki( 'signupend' ); ?></div>
381 <?php
382
383 }
384 }