@extends('breadcrumbs.auth.main') @section('authpage')
@if(\App\Facades\Options::getOption('enable_registrations') == true) @if(\App\Facades\Options::getOption('pw_security_policy') !== 'off')
×

{{__('Basic password security')}}

{{__("For your security, we implement strict password policies. It's also advisable to let your password manager or browser generate and save passwords for you (if it's a private device).")}}

{{__('Passwords must be a combination of:')}}

    @switch(\App\Facades\Options::getOption('pw_security_policy')) @case('low')
  • {{ __('A minimum of 10 characters') }}
  • @break @case('medium')
  • {{ __('A minimum of 12 characters;') }}
  • {{ __('At least one special character;') }}
  • {{ __('Lower case and upper case characters') }}
  • @break @case('high')
  • {{ __('A minimum of 20 characters;') }}
  • {{ __('At least one special character;') }}
  • {{ __('Lower case and upper case characters') }}
  • {{ __('At least one numerical character') }}
  • @break @endswitch
@endif @if($demoActive)

{{ __('Warning') }}

{{ __('Do not use real credentials here. The application is in demo mode. Additionally, the database is wiped every day.') }}

{{ __("Also note: If a game license is required to sign up, you may find valid MC usernames at NameMC. No special validation is performed other than contacting Mojang's authentication servers to verify the username's existence, therefore, you can use any username for testing purposes.") }}

@endif
@csrf
{!! __("Why do we need this? We use your age information to make sure you meet age requirements for certain positions, and to make sure that everyone is compliant with our terms of service.") !!}
@if(\App\Facades\Options::getOption('requireGameLicense') && \App\Facades\Options::getOption('currentGame') == 'MINECRAFT')
@endif
@else
{{ __('Sorry, but new signups are currently closed.') }}

{{ __('Due to an internal policy, new accounts cannot be created, and so you will not be able to sign up for an account. If you already have an account with us, you can still sign-in as you usually would.') }}

{{ __('I\'m trying to sign up so I can apply for a vacancy here. What does this restriction mean for me?') }}

{{ __('Effectively, this means that you will not be able to apply for any of our vacancies unless you already have an account. However, if you\'ve received an invitation to create an account or apply for a vacancy, you still can, but you must use the sign-up invitation link sent to your email address.') }}

{!! __('Alternatively, if you don\'t have an invitation, feel free to :requestInviteLink.', ['requestInviteLink' => '' . __('request an invite') . '']) !!}

@endif
@stop