bug 10158 : do not mention allowing others to contact you if $wgEnableUserEmail=false
[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 echo '&#160;';
134 echo Html::input( 'wpMailmypassword', wfMsg( 'mailmypassword' ), 'submit', array(
135 'id' => 'wpMailmypassword',
136 'tabindex' => '10'
137 ) );
138 } ?>
139
140 </td>
141 </tr>
142 </table>
143 <?php if( @$this->haveData( 'uselang' ) ) { ?><input type="hidden" name="uselang" value="<?php $this->text( 'uselang' ); ?>" /><?php } ?>
144 <?php if( @$this->haveData( 'token' ) ) { ?><input type="hidden" name="wpLoginToken" value="<?php $this->text( 'token' ); ?>" /><?php } ?>
145 </form>
146 </div>
147 <div id="loginend"><?php $this->msgWiki( 'loginend' ); ?></div>
148 <?php
149
150 }
151 }
152
153 /**
154 * @ingroup Templates
155 */
156 class UsercreateTemplate extends QuickTemplate {
157 function addInputItem( $name, $value, $type, $msg, $helptext = false ) {
158 $this->data['extraInput'][] = array(
159 'name' => $name,
160 'value' => $value,
161 'type' => $type,
162 'msg' => $msg,
163 'helptext' => $helptext,
164 );
165 }
166
167 function execute() {
168 if( $this->data['message'] ) {
169 ?>
170 <div class="<?php $this->text('messagetype') ?>box">
171 <?php if ( $this->data['messagetype'] == 'error' ) { ?>
172 <strong><?php $this->msg( 'loginerror' )?></strong><br />
173 <?php } ?>
174 <?php $this->html('message') ?>
175 </div>
176 <div class="visualClear"></div>
177 <?php } ?>
178
179 <div id="signupstart"><?php $this->msgWiki( 'signupstart' ); ?></div>
180 <div id="userlogin">
181
182 <form name="userlogin2" id="userlogin2" method="post" action="<?php $this->text('action') ?>">
183 <h2><?php $this->msg('createaccount') ?></h2>
184 <p id="userloginlink"><?php $this->html('link') ?></p>
185 <?php $this->html('header'); /* pre-table point for form plugins... */ ?>
186 <?php if( @$this->haveData( 'languages' ) ) { ?><div id="languagelinks"><p><?php $this->html( 'languages' ); ?></p></div><?php } ?>
187 <table>
188 <tr>
189 <td class="mw-label"><label for='wpName2'><?php $this->msg('yourname') ?></label></td>
190 <td class="mw-input">
191 <?php
192 echo Html::input( 'wpName', $this->data['name'], 'text', array(
193 'class' => 'loginText',
194 'id' => 'wpName2',
195 'tabindex' => '1',
196 'size' => '20',
197 'required',
198 'autofocus'
199 ) ); ?>
200 </td>
201 <td></td>
202 </tr>
203 <tr>
204 <td class="mw-label"><label for='wpPassword2'><?php $this->msg('yourpassword') ?></label></td>
205 <td class="mw-input">
206 <?php
207 echo Html::input( 'wpPassword', null, 'password', array(
208 'class' => 'loginPassword',
209 'id' => 'wpPassword2',
210 'tabindex' => '2',
211 'size' => '20'
212 ) + User::passwordChangeInputAttribs() ); ?>
213 </td>
214 <td><div id="password-strength"></div></td>
215 </tr>
216 <?php if( $this->data['usedomain'] ) {
217 $doms = "";
218 foreach( $this->data['domainnames'] as $dom ) {
219 $doms .= "<option>" . htmlspecialchars( $dom ) . "</option>";
220 }
221 ?>
222 <tr>
223 <td class="mw-label"><?php $this->msg( 'yourdomainname' ) ?></td>
224 <td class="mw-input">
225 <select name="wpDomain" value="<?php $this->text( 'domain' ) ?>"
226 tabindex="3">
227 <?php echo $doms ?>
228 </select>
229 </td>
230 <td></td>
231 </tr>
232 <?php } ?>
233 <tr>
234 <td class="mw-label"><label for='wpRetype'><?php $this->msg('yourpasswordagain') ?></label></td>
235 <td class="mw-input">
236 <?php
237 echo Html::input( 'wpRetype', null, 'password', array(
238 'class' => 'loginPassword',
239 'id' => 'wpRetype',
240 'tabindex' => '4',
241 'size' => '20'
242 ) + User::passwordChangeInputAttribs() ); ?>
243 </td>
244 <td><div id="password-retype"></div></td>
245 </tr>
246 <tr>
247 <?php if( $this->data['useemail'] ) { ?>
248 <td class="mw-label"><label for='wpEmail'><?php $this->msg('youremail') ?></label></td>
249 <td class="mw-input">
250 <?php
251 echo Html::input( 'wpEmail', $this->data['email'], 'email', array(
252 'class' => 'loginText',
253 'id' => 'wpEmail',
254 'tabindex' => '5',
255 'size' => '20'
256 ) ); ?>
257 <div class="prefsectiontip">
258 <?php // duplicated in Preferences.php profilePreferences()
259 if( $this->data['emailrequired'] ) {
260 $this->msgWiki('prefs-help-email-required');
261 } else {
262 $this->msgWiki('prefs-help-email');
263 }
264 if( $this->data['emailothers'] ) {
265 $this->msgWiki('prefs-help-email-others');
266 } ?>
267 </div>
268 </td>
269 <td></td>
270 <?php } ?>
271 <?php if( $this->data['userealname'] ) { ?>
272 </tr>
273 <tr>
274 <td class="mw-label"><label for='wpRealName'><?php $this->msg('yourrealname') ?></label></td>
275 <td class="mw-input" colspan="2">
276 <input type='text' class='loginText' name="wpRealName" id="wpRealName"
277 tabindex="6"
278 value="<?php $this->text('realname') ?>" size='20' />
279 <div class="prefsectiontip">
280 <?php $this->msgWiki('prefs-help-realname'); ?>
281 </div>
282 </td>
283 <td></td>
284 <?php } ?>
285 <?php if( $this->data['usereason'] ) { ?>
286 </tr>
287 <tr>
288 <td class="mw-label"><label for='wpReason'><?php $this->msg('createaccountreason') ?></label></td>
289 <td class="mw-input" colspan="2">
290 <input type='text' class='loginText' name="wpReason" id="wpReason"
291 tabindex="7"
292 value="<?php $this->text('reason') ?>" size='20' />
293 </td>
294 <?php } ?>
295 </tr>
296 <?php if( $this->data['canremember'] ) { ?>
297 <tr>
298 <td></td>
299 <td class="mw-input" colspan="2">
300 <?php
301 global $wgCookieExpiration, $wgLang;
302 echo Xml::checkLabel(
303 wfMsgExt( 'remembermypassword', 'parsemag', $wgLang->formatNum( ceil( $wgCookieExpiration / ( 3600 * 24 ) ) ) ),
304 'wpRemember',
305 'wpRemember',
306 $this->data['remember'],
307 array( 'tabindex' => '8' )
308 )
309 ?>
310 </td>
311 </tr>
312 <?php }
313
314 $tabIndex = 9;
315 if ( isset( $this->data['extraInput'] ) && is_array( $this->data['extraInput'] ) ) {
316 foreach ( $this->data['extraInput'] as $inputItem ) { ?>
317 <tr>
318 <?php
319 if ( !empty( $inputItem['msg'] ) && $inputItem['type'] != 'checkbox' ) {
320 ?><td class="mw-label"><label for="<?php
321 echo htmlspecialchars( $inputItem['name'] ); ?>"><?php
322 $this->msgWiki( $inputItem['msg'] ) ?></label><?php
323 } else {
324 ?><td><?php
325 }
326 ?></td>
327 <td class="mw-input" colspan="2">
328 <input type="<?php echo htmlspecialchars( $inputItem['type'] ) ?>" name="<?php
329 echo htmlspecialchars( $inputItem['name'] ); ?>"
330 tabindex="<?php echo $tabIndex++; ?>"
331 value="<?php
332 if ( $inputItem['type'] != 'checkbox' ) {
333 echo htmlspecialchars( $inputItem['value'] );
334 } else {
335 echo '1';
336 }
337 ?>" id="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"
338 <?php
339 if ( $inputItem['type'] == 'checkbox' && !empty( $inputItem['value'] ) )
340 echo 'checked="checked"';
341 ?> /> <?php
342 if ( $inputItem['type'] == 'checkbox' && !empty( $inputItem['msg'] ) ) {
343 ?>
344 <label for="<?php echo htmlspecialchars( $inputItem['name'] ); ?>"><?php
345 $this->msgHtml( $inputItem['msg'] ) ?></label><?php
346 }
347 if( $inputItem['helptext'] !== false ) {
348 ?>
349 <div class="prefsectiontip">
350 <?php $this->msgWiki( $inputItem['helptext'] ); ?>
351 </div>
352 <?php } ?>
353 </td>
354 </tr>
355 <?php
356
357 }
358 }
359 ?>
360 <tr>
361 <td></td>
362 <td class="mw-submit" colspan="2">
363 <input type='submit' name="wpCreateaccount" id="wpCreateaccount"
364 tabindex="<?php echo $tabIndex++; ?>"
365 value="<?php $this->msg('createaccount') ?>" />
366 <?php if( $this->data['createemail'] ) { ?>
367 <input type='submit' name="wpCreateaccountMail" id="wpCreateaccountMail"
368 tabindex="<?php echo $tabIndex++; ?>"
369 value="<?php $this->msg('createaccountmail') ?>" />
370 <?php } ?>
371 </td>
372 </tr>
373 </table>
374 <?php if( @$this->haveData( 'uselang' ) ) { ?><input type="hidden" name="uselang" value="<?php $this->text( 'uselang' ); ?>" /><?php } ?>
375 <?php if( @$this->haveData( 'token' ) ) { ?><input type="hidden" name="wpCreateaccountToken" value="<?php $this->text( 'token' ); ?>" /><?php } ?>
376 </form>
377 </div>
378 <div id="signupend"><?php $this->msgWiki( 'signupend' ); ?></div>
379 <?php
380
381 }
382 }