Register.template.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines http://www.simplemachines.org
  7. * @copyright 2014 Simple Machines and individual contributors
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. /**
  13. * Before showing users a registration form, show them the registration agreement.
  14. */
  15. function template_registration_agreement()
  16. {
  17. global $context, $scripturl, $txt, $modSettings;
  18. echo '
  19. <form action="', $scripturl, '?action=register" method="post" accept-charset="', $context['character_set'], '" id="registration">
  20. <div class="cat_bar">
  21. <h3 class="catbg">', $txt['registration_agreement'], '</h3>
  22. </div>
  23. <div class="roundframe">
  24. <p>', $context['agreement'], '</p>
  25. </div>
  26. <div id="confirm_buttons">';
  27. // Age restriction in effect?
  28. if ($context['show_coppa'])
  29. echo '
  30. <input type="submit" name="accept_agreement" value="', $context['coppa_agree_above'], '" class="button_submit"><br><br>
  31. <input type="submit" name="accept_agreement_coppa" value="', $context['coppa_agree_below'], '" class="button_submit">';
  32. else
  33. echo '
  34. <input type="submit" name="accept_agreement" value="', $txt['agreement_agree'], '" class="button_submit">';
  35. echo '
  36. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  37. <input type="hidden" name="', $context['register_token_var'], '" value="', $context['register_token'], '">
  38. </div>
  39. <input type="hidden" name="step" value="1">
  40. </form>';
  41. }
  42. // Before registering - get their information.
  43. function template_registration_form()
  44. {
  45. global $context, $settings, $scripturl, $txt, $modSettings;
  46. echo '
  47. <script><!-- // --><![CDATA[
  48. function verifyAgree()
  49. {
  50. if (currentAuthMethod == \'passwd\' && document.forms.registration.smf_autov_pwmain.value != document.forms.registration.smf_autov_pwverify.value)
  51. {
  52. alert("', $txt['register_passwords_differ_js'], '");
  53. return false;
  54. }
  55. return true;
  56. }
  57. var currentAuthMethod = \'passwd\';
  58. // ]]></script>';
  59. // Any errors?
  60. if (!empty($context['registration_errors']))
  61. {
  62. echo '
  63. <div class="errorbox">
  64. <span>', $txt['registration_errors_occurred'], '</span>
  65. <ul class="reset">';
  66. // Cycle through each error and display an error message.
  67. foreach ($context['registration_errors'] as $error)
  68. echo '
  69. <li>', $error, '</li>';
  70. echo '
  71. </ul>
  72. </div>';
  73. }
  74. echo '
  75. <form action="', $scripturl, '?action=register2" method="post" accept-charset="', $context['character_set'], '" name="registration" id="registration" onsubmit="return verifyAgree();">
  76. <div class="cat_bar">
  77. <h3 class="catbg">', $txt['registration_form'], '</h3>
  78. </div>
  79. <div class="title_bar title_top">
  80. <h4 class="titlebg">', $txt['required_info'], '</h4>
  81. </div>
  82. <div class="windowbg2">
  83. <fieldset class="content">
  84. <dl class="register_form">
  85. <dt><strong><label for="smf_autov_username">', $txt['username'], ':</label></strong></dt>
  86. <dd>
  87. <input type="text" name="user" id="smf_autov_username" size="30" tabindex="', $context['tabindex']++, '" maxlength="25" value="', isset($context['username']) ? $context['username'] : '', '" class="input_text">
  88. <span id="smf_autov_username_div" style="display: none;">
  89. <a id="smf_autov_username_link" href="#">
  90. <span id="smf_autov_username_img" class="field_icons check"></span>
  91. </a>
  92. </span>
  93. </dd>
  94. <dt><strong><label for="smf_autov_reserve1">', $txt['user_email_address'], ':</label></strong></dt>
  95. <dd>
  96. <input type="text" name="email" id="smf_autov_reserve1" size="30" tabindex="', $context['tabindex']++, '" value="', isset($context['email']) ? $context['email'] : '', '" class="input_text">
  97. </dd>
  98. </dl>';
  99. // If OpenID is enabled, give the user a choice between password and OpenID.
  100. if (!empty($modSettings['enableOpenID']) && $modSettings['enableOpenID'] != 2)
  101. {
  102. echo '
  103. <dl class="register_form" id="authentication_group">
  104. <dt>
  105. <strong>', $txt['authenticate_label'], ':</strong>
  106. <a href="', $scripturl, '?action=helpadmin;help=register_openid" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a>
  107. </dt>
  108. <dd>
  109. <label for="auth_pass" id="option_auth_pass">
  110. <input type="radio" name="authenticate" value="passwd" id="auth_pass" tabindex="', $context['tabindex']++, '"', empty($context['openid']) ? ' checked' : '', ' onclick="updateAuthMethod();" class="input_radio">
  111. ', $txt['authenticate_password'], '
  112. </label>
  113. <label for="auth_openid" id="option_auth_openid">
  114. <input type="radio" name="authenticate" value="openid" id="auth_openid" tabindex="', $context['tabindex']++, '"', !empty($context['openid']) ? ' checked' : '', ' onclick="updateAuthMethod();" class="input_radio">
  115. ', $txt['authenticate_openid'], '
  116. </label>
  117. </dd>
  118. </dl>';
  119. }
  120. echo '
  121. <dl class="register_form" id="password1_group">
  122. <dt><strong><label for="smf_autov_pwmain">', ucwords($txt['choose_pass']), ':</label></strong></dt>
  123. <dd>
  124. <input type="password" name="passwrd1" id="smf_autov_pwmain" size="30" tabindex="', $context['tabindex']++, '" class="input_password">
  125. <span id="smf_autov_pwmain_div" style="display: none;">
  126. <span id="smf_autov_pwmain_img" class="field_icons invalid"></span>
  127. </span>
  128. </dd>
  129. </dl>
  130. <dl class="register_form" id="password2_group">
  131. <dt><strong><label for="smf_autov_pwverify">', ucwords($txt['verify_pass']), ':</label></strong></dt>
  132. <dd>
  133. <input type="password" name="passwrd2" id="smf_autov_pwverify" size="30" tabindex="', $context['tabindex']++, '" class="input_password">
  134. <span id="smf_autov_pwverify_div" style="display: none;">
  135. <span id="smf_autov_pwverify_img" class="field_icons valid"></span>
  136. </span>
  137. </dd>
  138. </dl>';
  139. // If OpenID is enabled, give the user a choice between password and OpenID.
  140. if (!empty($modSettings['enableOpenID']) && $modSettings['enableOpenID'] != 2)
  141. {
  142. echo '
  143. <dl class="register_form" id="openid_group">
  144. <dt><strong>', $txt['authenticate_openid_url'], ':</strong></dt>
  145. <dd>
  146. <input type="text" name="openid_identifier" id="openid_url" size="30" tabindex="', $context['tabindex']++, '" value="', isset($context['openid']) ? $context['openid'] : '', '" class="input_text openid_login">
  147. </dd>
  148. </dl>';
  149. }
  150. // If there is any field marked as required, show it here!
  151. if (!empty($context['custom_fields_required']) && !empty($context['custom_fields']))
  152. {
  153. echo '
  154. <dl class="register_form">';
  155. foreach ($context['custom_fields'] as $field)
  156. if ($field['show_reg'] > 1)
  157. echo '
  158. <dt>
  159. <strong', !empty($field['is_error']) ? ' style="color: red;"' : '', '>', $field['name'], ':</strong>
  160. <span class="smalltext">', $field['desc'], '</span>
  161. </dt>
  162. <dd>', str_replace('name="', 'tabindex="' . $context['tabindex']++ .'" name="', $field['input_html']), '</dd>';
  163. echo '
  164. </dl>';
  165. }
  166. echo '
  167. </fieldset>
  168. </div>';
  169. // If we have either of these, show the extra group.
  170. if (!empty($context['profile_fields']) || !empty($context['custom_fields']))
  171. {
  172. echo '
  173. <div class="title_bar title_top">
  174. <h4 class="titlebg">', $txt['additional_information'], '</h4>
  175. </div>
  176. <div class="windowbg2">
  177. <fieldset class="content">
  178. <dl class="register_form" id="custom_group">';
  179. }
  180. if (!empty($context['profile_fields']))
  181. {
  182. // Any fields we particularly want?
  183. foreach ($context['profile_fields'] as $key => $field)
  184. {
  185. if ($field['type'] == 'callback')
  186. {
  187. if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func']))
  188. {
  189. $callback_func = 'template_profile_' . $field['callback_func'];
  190. $callback_func();
  191. }
  192. }
  193. else
  194. {
  195. echo '
  196. <dt>
  197. <strong', !empty($field['is_error']) ? ' style="color: red;"' : '', '>', $field['label'], ':</strong>';
  198. // Does it have any subtext to show?
  199. if (!empty($field['subtext']))
  200. echo '
  201. <span class="smalltext">', $field['subtext'], '</span>';
  202. echo '
  203. </dt>
  204. <dd>';
  205. // Want to put something infront of the box?
  206. if (!empty($field['preinput']))
  207. echo '
  208. ', $field['preinput'];
  209. // What type of data are we showing?
  210. if ($field['type'] == 'label')
  211. echo '
  212. ', $field['value'];
  213. // Maybe it's a text box - very likely!
  214. elseif (in_array($field['type'], array('int', 'float', 'text', 'password')))
  215. echo '
  216. <input type="', $field['type'] == 'password' ? 'password' : 'text', '" name="', $key, '" id="', $key, '" size="', empty($field['size']) ? 30 : $field['size'], '" value="', $field['value'], '" tabindex="', $context['tabindex']++, '" ', $field['input_attr'], ' class="input_', $field['type'] == 'password' ? 'password' : 'text', '">';
  217. // You "checking" me out? ;)
  218. elseif ($field['type'] == 'check')
  219. echo '
  220. <input type="hidden" name="', $key, '" value="0"><input type="checkbox" name="', $key, '" id="', $key, '"', !empty($field['value']) ? ' checked' : '', ' value="1" tabindex="', $context['tabindex']++, '" class="input_check" ', $field['input_attr'], '>';
  221. // Always fun - select boxes!
  222. elseif ($field['type'] == 'select')
  223. {
  224. echo '
  225. <select name="', $key, '" id="', $key, '" tabindex="', $context['tabindex']++, '">';
  226. if (isset($field['options']))
  227. {
  228. // Is this some code to generate the options?
  229. if (!is_array($field['options']))
  230. $field['options'] = eval($field['options']);
  231. // Assuming we now have some!
  232. if (is_array($field['options']))
  233. foreach ($field['options'] as $value => $name)
  234. echo '
  235. <option value="', $value, '"', $value == $field['value'] ? ' selected' : '', '>', $name, '</option>';
  236. }
  237. echo '
  238. </select>';
  239. }
  240. // Something to end with?
  241. if (!empty($field['postinput']))
  242. echo '
  243. ', $field['postinput'];
  244. echo '
  245. </dd>';
  246. }
  247. }
  248. }
  249. // Are there any custom fields?
  250. if (!empty($context['custom_fields']))
  251. {
  252. foreach ($context['custom_fields'] as $field)
  253. {
  254. if ($field['show_reg'] < 2)
  255. echo '
  256. <dt>
  257. <strong', !empty($field['is_error']) ? ' style="color: red;"' : '', '>', $field['name'], ':</strong>
  258. <span class="smalltext">', $field['desc'], '</span>
  259. </dt>
  260. <dd>', $field['input_html'], '</dd>';
  261. }
  262. }
  263. // If we have either of these, close the list like a proper gent.
  264. if (!empty($context['profile_fields']) || !empty($context['custom_fields']))
  265. {
  266. echo '
  267. </dl>
  268. </fieldset>
  269. </div>';
  270. }
  271. if ($context['visual_verification'])
  272. {
  273. echo '
  274. <div class="title_bar title_top">
  275. <h4 class="titlebg">', $txt['verification'], '</h4>
  276. </div>
  277. <div class="windowbg2">
  278. <fieldset class="content centertext">
  279. ', template_control_verification($context['visual_verification_id'], 'all'), '
  280. </fieldset>
  281. </div>';
  282. }
  283. echo '
  284. <div id="confirm_buttons flow_auto">';
  285. // Age restriction in effect?
  286. if (!$context['require_agreement'] && $context['show_coppa'])
  287. echo '
  288. <input type="submit" name="accept_agreement" value="', $context['coppa_agree_above'], '" class="button_submit"><br><br>
  289. <input type="submit" name="accept_agreement_coppa" value="', $context['coppa_agree_below'], '" class="button_submit">';
  290. else
  291. echo '
  292. <input type="submit" name="regSubmit" value="', $txt['register'], '" tabindex="', $context['tabindex']++, '" class="button_submit">';
  293. echo '
  294. </div>
  295. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  296. <input type="hidden" name="', $context['register_token_var'], '" value="', $context['register_token'], '">
  297. <input type="hidden" name="step" value="2">
  298. </form>
  299. <script><!-- // --><![CDATA[
  300. var regTextStrings = {
  301. "username_valid": "', $txt['registration_username_available'], '",
  302. "username_invalid": "', $txt['registration_username_unavailable'], '",
  303. "username_check": "', $txt['registration_username_check'], '",
  304. "password_short": "', $txt['registration_password_short'], '",
  305. "password_reserved": "', $txt['registration_password_reserved'], '",
  306. "password_numbercase": "', $txt['registration_password_numbercase'], '",
  307. "password_no_match": "', $txt['registration_password_no_match'], '",
  308. "password_valid": "', $txt['registration_password_valid'], '"
  309. };
  310. var verificationHandle = new smfRegister("registration", ', empty($modSettings['password_strength']) ? 0 : $modSettings['password_strength'], ', regTextStrings);
  311. // Update the authentication status.
  312. updateAuthMethod();
  313. // ]]></script>';
  314. }
  315. // After registration... all done ;).
  316. function template_after()
  317. {
  318. global $context, $txt, $scripturl;
  319. // Not much to see here, just a quick... "you're now registered!" or what have you.
  320. echo '
  321. <div id="registration_success">
  322. <div class="cat_bar">
  323. <h3 class="catbg">', $context['title'], '</h3>
  324. </div>
  325. <div class="windowbg">
  326. <p class="content">', $context['description'], '</p>
  327. </div>
  328. </div>';
  329. }
  330. // Template for giving instructions about COPPA activation.
  331. function template_coppa()
  332. {
  333. global $context, $txt, $scripturl;
  334. // Formulate a nice complicated message!
  335. echo '
  336. <div class="title_bar title_top">
  337. <h3 class="titlebg">', $context['page_title'], '</h3>
  338. </div>
  339. <div class="windowbg2">
  340. <div class="content">
  341. <p>', $context['coppa']['body'], '</p>
  342. <p>
  343. <span><a href="', $scripturl, '?action=coppa;form;member=', $context['coppa']['id'], '" target="_blank" class="new_win">', $txt['coppa_form_link_popup'], '</a> | <a href="', $scripturl, '?action=coppa;form;dl;member=', $context['coppa']['id'], '">', $txt['coppa_form_link_download'], '</a></span>
  344. </p>
  345. <p>', $context['coppa']['many_options'] ? $txt['coppa_send_to_two_options'] : $txt['coppa_send_to_one_option'], '</p>';
  346. // Can they send by post?
  347. if (!empty($context['coppa']['post']))
  348. {
  349. echo '
  350. <h4>1) ', $txt['coppa_send_by_post'], '</h4>
  351. <div class="coppa_contact">
  352. ', $context['coppa']['post'], '
  353. </div>';
  354. }
  355. // Can they send by fax??
  356. if (!empty($context['coppa']['fax']))
  357. {
  358. echo '
  359. <h4>', !empty($context['coppa']['post']) ? '2' : '1', ') ', $txt['coppa_send_by_fax'], '</h4>
  360. <div class="coppa_contact">
  361. ', $context['coppa']['fax'], '
  362. </div>';
  363. }
  364. // Offer an alternative Phone Number?
  365. if ($context['coppa']['phone'])
  366. {
  367. echo '
  368. <p>', $context['coppa']['phone'], '</p>';
  369. }
  370. echo '
  371. </div>
  372. </div>';
  373. }
  374. // An easily printable form for giving permission to access the forum for a minor.
  375. function template_coppa_form()
  376. {
  377. global $context, $txt, $scripturl;
  378. // Show the form (As best we can)
  379. echo '
  380. <table style="width: 100%; padding: 3px; border: 0" class="tborder" align="center">
  381. <tr>
  382. <td align="left">', $context['forum_contacts'], '</td>
  383. </tr><tr>
  384. <td align="right">
  385. <em>', $txt['coppa_form_address'], '</em>: ', $context['ul'], '<br>
  386. ', $context['ul'], '<br>
  387. ', $context['ul'], '<br>
  388. ', $context['ul'], '
  389. </td>
  390. </tr><tr>
  391. <td align="right">
  392. <em>', $txt['coppa_form_date'], '</em>: ', $context['ul'], '
  393. <br><br>
  394. </td>
  395. </tr><tr>
  396. <td align="left">
  397. ', $context['coppa_body'], '
  398. </td>
  399. </tr>
  400. </table>
  401. <br>';
  402. }
  403. // Show a window containing the spoken verification code.
  404. function template_verification_sound()
  405. {
  406. global $context, $settings, $txt, $scripturl, $modSettings;
  407. echo '<!DOCTYPE html>
  408. <html', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  409. <head>
  410. <meta http-equiv="Content-Type" content="text/html; charset=', $context['character_set'], '">
  411. <title>', $txt['visual_verification_sound'], '</title>
  412. <meta name="robots" content="noindex">
  413. <link rel="stylesheet" type="text/css" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'] ,'">
  414. <style type="text/css">';
  415. // Just show the help text and a "close window" link.
  416. echo '
  417. </style>
  418. </head>
  419. <body style="margin: 1ex;">
  420. <div class="windowbg description" style="text-align: center;">';
  421. if (isBrowser('is_ie') || isBrowser('is_ie11'))
  422. echo '
  423. <object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" type="audio/x-wav">
  424. <param name="AutoStart" value="1">
  425. <param name="FileName" value="', $context['verification_sound_href'], '">
  426. </object>';
  427. else
  428. echo '
  429. <object type="audio/x-wav" data="', $context['verification_sound_href'], '">
  430. <a href="', $context['verification_sound_href'], '" rel="nofollow">', $context['verification_sound_href'], '</a>
  431. </object>';
  432. echo '
  433. <br>
  434. <a href="', $context['verification_sound_href'], ';sound" rel="nofollow">', $txt['visual_verification_sound_again'], '</a><br>
  435. <a href="', $context['verification_sound_href'], '" rel="nofollow">', $txt['visual_verification_sound_direct'], '</a><br><br>
  436. <a href="javascript:self.close();">', $txt['visual_verification_sound_close'], '</a><br>
  437. </div>
  438. </body>
  439. </html>';
  440. }
  441. function template_admin_register()
  442. {
  443. global $context, $settings, $scripturl, $txt, $modSettings;
  444. echo '
  445. <div id="admincenter">
  446. <div id="admin_form_wrapper">
  447. <form id="postForm" class="windowbg2" action="', $scripturl, '?action=admin;area=regcenter" method="post" accept-charset="', $context['character_set'], '" name="postForm">
  448. <div class="cat_bar">
  449. <h3 class="catbg">', $txt['admin_browse_register_new'], '</h3>
  450. </div>
  451. <div class="content" id="register_screen">';
  452. if (!empty($context['registration_done']))
  453. echo '
  454. <div class="infobox">
  455. ', $context['registration_done'], '
  456. </div>';
  457. echo '
  458. <dl class="register_form" id="admin_register_form">
  459. <dt>
  460. <strong><label for="user_input">', $txt['admin_register_username'], ':</label></strong>
  461. <span class="smalltext">', $txt['admin_register_username_desc'], '</span>
  462. </dt>
  463. <dd>
  464. <input type="text" name="user" id="user_input" tabindex="', $context['tabindex']++, '" size="30" maxlength="25" class="input_text">
  465. </dd>
  466. <dt>
  467. <strong><label for="email_input">', $txt['admin_register_email'], ':</label></strong>
  468. <span class="smalltext">', $txt['admin_register_email_desc'], '</span>
  469. </dt>
  470. <dd>
  471. <input type="text" name="email" id="email_input" tabindex="', $context['tabindex']++, '" size="30" class="input_text">
  472. </dd>
  473. <dt>
  474. <strong><label for="password_input">', $txt['admin_register_password'], ':</label></strong>
  475. <span class="smalltext">', $txt['admin_register_password_desc'], '</span>
  476. </dt>
  477. <dd>
  478. <input type="password" name="password" id="password_input" tabindex="', $context['tabindex']++, '" size="30" class="input_password" onchange="onCheckChange();">
  479. </dd>';
  480. if (!empty($context['member_groups']))
  481. {
  482. echo '
  483. <dt>
  484. <strong><label for="group_select">', $txt['admin_register_group'], ':</label></strong>
  485. <span class="smalltext">', $txt['admin_register_group_desc'], '</span>
  486. </dt>
  487. <dd>
  488. <select name="group" id="group_select" tabindex="', $context['tabindex']++, '">';
  489. foreach ($context['member_groups'] as $id => $name)
  490. echo '
  491. <option value="', $id, '">', $name, '</option>';
  492. echo '
  493. </select>
  494. </dd>';
  495. }
  496. // If there is any field marked as required, show it here!
  497. if (!empty($context['custom_fields_required']) && !empty($context['custom_fields']))
  498. foreach ($context['custom_fields'] as $field)
  499. if ($field['show_reg'] > 1)
  500. echo '
  501. <dt>
  502. <strong', !empty($field['is_error']) ? ' style="color: red;"' : '', '>', $field['name'], ':</strong>
  503. <span class="smalltext">', $field['desc'], '</span>
  504. </dt>
  505. <dd>', str_replace('name="', 'tabindex="' . $context['tabindex']++ .'" name="', $field['input_html']), '</dd>';
  506. echo '
  507. <dt>
  508. <strong><label for="emailPassword_check">', $txt['admin_register_email_detail'], ':</label></strong>
  509. <span class="smalltext">', $txt['admin_register_email_detail_desc'], '</span>
  510. </dt>
  511. <dd>
  512. <input type="checkbox" name="emailPassword" id="emailPassword_check" tabindex="', $context['tabindex']++, '" checked disabled class="input_check">
  513. </dd>
  514. <dt>
  515. <strong><label for="emailActivate_check">', $txt['admin_register_email_activate'], ':</label></strong>
  516. </dt>
  517. <dd>
  518. <input type="checkbox" name="emailActivate" id="emailActivate_check" tabindex="', $context['tabindex']++, '"', !empty($modSettings['registration_method']) && $modSettings['registration_method'] == 1 ? ' checked' : '', ' onclick="onCheckChange();" class="input_check">
  519. </dd>
  520. </dl>
  521. <div class="flow_auto">
  522. <input type="submit" name="regSubmit" value="', $txt['register'], '" tabindex="', $context['tabindex']++, '" class="button_submit">
  523. <input type="hidden" name="sa" value="register">
  524. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  525. <input type="hidden" name="', $context['admin-regc_token_var'], '" value="', $context['admin-regc_token'], '">
  526. </div>
  527. </div>
  528. </form>
  529. </div>
  530. </div>
  531. <br class="clear">';
  532. }
  533. // Form for editing the agreement shown for people registering to the forum.
  534. function template_edit_agreement()
  535. {
  536. global $context, $scripturl, $txt;
  537. if (!empty($context['saved_successful']))
  538. echo '
  539. <div class="infobox">', $txt['settings_saved'], '</div>';
  540. elseif (!empty($context['could_not_save']))
  541. echo '
  542. <div class="errorbox">', $txt['admin_agreement_not_saved'], '</div>';
  543. // Just a big box to edit the text file ;).
  544. echo '
  545. <form id="admin_form_wrapper" action="', $scripturl, '?action=admin;area=regcenter" method="post" accept-charset="', $context['character_set'], '">
  546. <div class="cat_bar">
  547. <h3 class="catbg">', $txt['registration_agreement'], '</h3>
  548. </div>';
  549. // Warning for if the file isn't writable.
  550. if (!empty($context['warning']))
  551. echo '
  552. <p class="error">', $context['warning'], '</p>';
  553. echo '
  554. <div class="windowbg2" id="registration_agreement">
  555. <div class="content">';
  556. // Is there more than one language to choose from?
  557. if (count($context['editable_agreements']) > 1)
  558. {
  559. echo '
  560. <div class="cat_bar">
  561. <h3 class="catbg">', $txt['language_configuration'], '</h3>
  562. </div>
  563. <div class="information">
  564. <form action="', $scripturl, '?action=admin;area=regcenter" id="change_reg" method="post" accept-charset="', $context['character_set'], '" style="display: inline;">
  565. <strong>', $txt['admin_agreement_select_language'], ':</strong>&nbsp;
  566. <select name="agree_lang" onchange="document.getElementById(\'change_reg\').submit();" tabindex="', $context['tabindex']++, '">';
  567. foreach ($context['editable_agreements'] as $file => $name)
  568. echo '
  569. <option value="', $file, '"', $context['current_agreement'] == $file ? ' selected' : '', '>', $name, '</option>';
  570. echo '
  571. </select>
  572. <div class="righttext">
  573. <input type="hidden" name="sa" value="agreement">
  574. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  575. <input type="submit" name="change" value="', $txt['admin_agreement_select_language_change'], '" tabindex="', $context['tabindex']++, '" class="button_submit">
  576. </div>
  577. </form>
  578. </div>';
  579. }
  580. // Show the actual agreement in an oversized text box.
  581. echo '
  582. <p class="agreement">
  583. <textarea cols="70" rows="20" name="agreement" id="agreement">', $context['agreement'], '</textarea>
  584. </p>
  585. <p>
  586. <label for="requireAgreement"><input type="checkbox" name="requireAgreement" id="requireAgreement"', $context['require_agreement'] ? ' checked' : '', ' tabindex="', $context['tabindex']++, '" value="1" class="input_check"> ', $txt['admin_agreement'], '.</label>
  587. </p>
  588. <div class="flow_auto" >
  589. <input type="submit" value="', $txt['save'], '" tabindex="', $context['tabindex']++, '" class="button_submit">
  590. <input type="hidden" name="agree_lang" value="', $context['current_agreement'], '">
  591. <input type="hidden" name="sa" value="agreement">
  592. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  593. <input type="hidden" name="', $context['admin-rega_token_var'], '" value="', $context['admin-rega_token'], '">
  594. </div>
  595. </div>
  596. </div>
  597. </form>';
  598. }
  599. function template_edit_reserved_words()
  600. {
  601. global $context, $scripturl, $txt;
  602. if (!empty($context['saved_successful']))
  603. echo '
  604. <div class="infobox">', $txt['settings_saved'], '</div>';
  605. echo '
  606. <form id="admin_form_wrapper" class="windowbg2" action="', $scripturl, '?action=admin;area=regcenter" method="post" accept-charset="', $context['character_set'], '">
  607. <div class="cat_bar">
  608. <h3 class="catbg">', $txt['admin_reserved_set'], '</h3>
  609. </div>
  610. <div class="content">
  611. <h4>', $txt['admin_reserved_line'], '</h4>
  612. <p class="reserved_names">
  613. <textarea cols="30" rows="6" name="reserved" id="reserved">', implode("\n", $context['reserved_words']), '</textarea>
  614. </p>
  615. <dl class="settings">
  616. <dt>
  617. <label for="matchword">', $txt['admin_match_whole'], '</label>
  618. </dt>
  619. <dd>
  620. <input type="checkbox" name="matchword" id="matchword" tabindex="', $context['tabindex']++, '"', $context['reserved_word_options']['match_word'] ? ' checked' : '', ' class="input_check">
  621. </dd>
  622. <dt>
  623. <label for="matchcase">', $txt['admin_match_case'], '</label>
  624. </dt>
  625. <dd>
  626. <input type="checkbox" name="matchcase" id="matchcase" tabindex="', $context['tabindex']++, '"', $context['reserved_word_options']['match_case'] ? ' checked' : '', ' class="input_check">
  627. </dd>
  628. <dt>
  629. <label for="matchuser">', $txt['admin_check_user'], '</label>
  630. </dt>
  631. <dd>
  632. <input type="checkbox" name="matchuser" id="matchuser" tabindex="', $context['tabindex']++, '"', $context['reserved_word_options']['match_user'] ? ' checked' : '', ' class="input_check">
  633. </dd>
  634. <dt>
  635. <label for="matchname">', $txt['admin_check_display'], '</label>
  636. </dt>
  637. <dd>
  638. <input type="checkbox" name="matchname" id="matchname" tabindex="', $context['tabindex']++, '"', $context['reserved_word_options']['match_name'] ? ' checked' : '', ' class="input_check">
  639. </dd>
  640. </dl>
  641. <div class="flow_auto" >
  642. <input type="submit" value="', $txt['save'], '" name="save_reserved_names" tabindex="', $context['tabindex']++, '" style="margin: 1ex;" class="button_submit">
  643. <input type="hidden" name="sa" value="reservednames">
  644. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
  645. <input type="hidden" name="', $context['admin-regr_token_var'], '" value="', $context['admin-regr_token'], '">
  646. </div>
  647. </div>
  648. </form>';
  649. }
  650. ?>