Create an account

@if (registerForm.controls['username'].touched && registerForm.controls['username'].errors) { @if (registerForm.controls['username'].errors['minlength']) { *Username must be at least 3 characters long } @if (registerForm.controls['username'].errors['maxlength']) { *Username could contain max 20 characters long } @if (registerForm.controls['username'].errors['pattern']) { *Username could contain only letters, numbers and underscore } }
@if (registerForm.controls['email'].dirty && registerForm.hasError('pattern' , 'email')) { *invalid E-Mail }
@if (registerForm.controls['password'].touched && registerForm.controls['password'].errors) { @if (registerForm.controls['password'].errors['minlength']) { *Password must be at least 10 characters long } @if (registerForm.controls['password'].errors['uppercase']) { *Password must contain at least one uppercase letter } @if (registerForm.controls['password'].errors['lowercase']) { *Password must contain at least one lowercase letter } @if (registerForm.controls['password'].errors['number']) { *Password must contain at least one number } @if (registerForm.controls['password'].errors['special']) { *Password must contain at least one special character } }

Have already an account? Sign in here!