Skip to content

Commit

Permalink
fix: password pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
woddel0 committed Aug 2, 2023
1 parent 6368fd1 commit da441a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/auth-page/auth-page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<form [formGroup]="authForm">
<div class="form-group">
<label for="username">Benutzername: </label>
<input id="username" type="text" class="form-control" formControlName="username">
<input id="username" type="text" class="form-control" formControlName="username" pattern="[A-Za-z0-9-_]{3,}">
</div>
<div class="form-group pw-field">
<label for="password">Passwort: </label>
Expand Down

0 comments on commit da441a0

Please sign in to comment.