Register.template.php 26 KB

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