Register.template.php 26 KB

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