', $txt[97], ' - ', $txt[517], '
', $txt[98], ':
', $txt[520], '
', $txt[69], ':
', $txt[679], '
'; // Are they allowed to hide their email? if ($context['allow_hide_email']) echo ' '; echo '
', $txt[81], ':
', $txt[82], ':
'; // Require them to agree here? if ($context['require_agreement']) echo '
', $context['agreement'], '
'; echo '
'; // Uncheck the agreement thing.... if ($context['require_agreement']) echo ' '; } // After registration... all done ;). function template_after() { global $context, $settings, $options, $txt, $scripturl; // Not much to see here, just a quick... "you're now registered!" or what have you. echo '
', $context['page_title'], '
', $context['description'], '


'; } function template_admin_browse() { global $context, $settings, $options, $scripturl, $txt, $modSettings; echo '
'; foreach ($context['columns'] as $column) { echo ' '; } echo ' '; if (empty($context['members'])) echo ' '; else { foreach ($context['members'] as $member) echo ' '; echo ' '; } echo '
' . $txt[119] . ' ', $txt['registration_center'], '
'; if (isset($context['types_enabled'])) { if ($context['types_enabled'] == 'approve' || $context['types_enabled'] == 'both') echo ' ', $context['browse_type'] == 'approve' ? '>' . $txt['admin_browse_awaiting_approval'] : '' . $txt['admin_browse_awaiting_approval'] . ''; if ($context['types_enabled'] == 'both') echo ' |'; if ($context['types_enabled'] == 'activate' || $context['types_enabled'] == 'both') echo ' ', $context['browse_type'] == 'activate' ? '>' . $txt['admin_browse_awaiting_activate'] : '' . $txt['admin_browse_awaiting_activate'] . ''; echo ' |'; } echo ' ', $txt['admin_browse_register_new'], '
', $txt['admin_browse_' . $context['browse_type'] . '_desc'], '
', $txt[139], ': ', $context['page_index'], '
'; if ($column['selected']) echo $column['label'], ' '; else echo $column['label']; echo '
', $txt['admin_browse_no_members'], ' ', ($context['browse_type'] == 'approve' ? $txt['admin_browse_awaiting_approval'] : $txt['admin_browse_awaiting_activate']), '
', $member['id'], ' ', $member['username'], '', ($member['possibleBot'] == 1 ? ' (Bot?)' : '') , ' ', $member['email'], ' ', $member['ip'], ' ', $member['dateRegistered'], '
', $context['sort_direction'] == 'up' ? ' ' : '', '
', $txt[139], ': ', $context['page_index'], '
'; } function template_admin_register() { global $context, $settings, $options, $scripturl, $txt, $modSettings; echo '
' . $txt[119] . ' ', $txt['registration_center'], '
'; if (isset($context['types_enabled'])) { if ($context['types_enabled'] == 'approve' || $context['types_enabled'] == 'both') echo ' ', $txt['admin_browse_awaiting_approval'], ''; if ($context['types_enabled'] == 'both') echo ' |'; if ($context['types_enabled'] == 'activate' || $context['types_enabled'] == 'both') echo ' ', $txt['admin_browse_awaiting_activate'], ''; echo ' |'; } echo ' >', $txt['admin_browse_register_new'], '
', $txt['admin_register_desc'], '
', $txt['admin_register_username'], ':
', $txt['admin_register_username_desc'], '
', $txt['admin_register_email'], ':
', $txt['admin_register_email_desc'], '
', $txt['admin_register_password'], ':
', $txt['admin_register_password_desc'], '

', $txt['admin_register_group'], ':
', $txt['admin_register_group_desc'], '

', $txt['admin_register_email_detail'], ':
', $txt['admin_register_email_detail_desc'], '

', $txt['admin_register_email_activate'], ':
'; } ?>