', $txt['managesubaccounts'], !$context['user']['is_owner'] ? ' - "' . $context['member']['name'] . '"' : '', ' '; // Have we some description? if (!empty($context['page_desc'])) { echo '
', $context['page_desc']; echo '

'; echo '
'; } if (empty($context['subaccounts'])) echo '

', $txt['current_subaccounts_none'], '

'; else { echo ' '; } if(!empty($context['can_create'])) echo '
'; } function template_manage_subaccounts_create() { global $context, $settings, $options, $scripturl, $modSettings, $txt; // The main header! echo '

', $txt['managesubaccounts'], !$context['user']['is_owner'] ? ' - "' . $context['member']['name'] . '"' : '', '

', $txt['create_subaccount_desc'], '

', $txt['choose_subaccount'], ': ', $txt['identification_by_smf'], '
', $txt['password'], ': ', $txt['subaccount_create_pass'], '
', $txt['verify_pass'], ':


'; } function template_manage_subaccounts_merge() { global $context, $settings, $options, $scripturl, $modSettings, $txt; // The main header! echo '

', $txt['managesubaccounts'], !$context['user']['is_owner'] ? ' - "' . $context['member']['name'] . '"' : '', '

', $context['page_desc'], '

'; echo '
'; foreach($context['subaccounts'] as $account) echo '
', $account['name'], $account['id'] == $context['member']['id'] ? ' (' . $txt['parent_account'] . ')' : '' , '
'; echo '


'; } function template_manage_subaccounts_reassign() { global $context, $settings, $options, $scripturl, $modSettings, $txt; // The main header! echo '

', $txt['managesubaccounts'], !$context['user']['is_owner'] ? ' - "' . $context['member']['name'] . '"' : '', '

', $context['page_desc'], '

', $txt['button_parent'], ':
', $context['subaccount']['name'], '
', $txt['choose_pass'], ':
', $txt['verify_pass'], ':


'; } function template_manage_subaccounts_split() { global $context, $settings, $options, $scripturl, $modSettings, $txt; // The main header! echo '

', $txt['managesubaccounts'], !$context['user']['is_owner'] ? ' - "' . $context['member']['name'] . '"' : '', '

', $context['page_desc'], '

', $txt['subaccount'], ':
', $context['subaccount']['name'], '
', $txt['email'], ':
', $txt['choose_pass'], ':
', $txt['verify_pass'], ':


'; } ?>