<% const body = `

${isFirstUser ? 'Setup Administrator Account' : 'Create Account'}

${isFirstUser ? 'Create the first administrator account for this Luanti server' : 'Join this Luanti server management team' }

${typeof error !== 'undefined' ? `
Error: ${error}
` : ''} ${isFirstUser ? `
First User Setup: You are creating the first administrator account for this server. All users have full admin privileges.
` : ''}
${typeof csrfToken !== 'undefined' && csrfToken ? `` : ''}
3-20 characters, letters, numbers, underscore, or hyphen only
At least 8 characters long
Already have an account?

${isFirstUser ? 'This will be the primary administrator account.' : 'All accounts have full server administration privileges.' }

`; %> <%- include('../layout', { body: body, currentPage: 'register', title: title }) %>