@extends('breadcrumbs.auth.main') @section('authpage')
@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 six hours.') }}

{{ __("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
@stop