We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83d85f3 commit b6a7da5Copy full SHA for b6a7da5
src/app/login-form/login-form.component.html
@@ -2,11 +2,11 @@
2
<div *ngIf="applicationService.auth_user.logged==false" class="container">
3
<h1 i18n="@@login_title">Login</h1>
4
<mat-form-field>
5
- <input matInput placeholder="Username" [(ngModel)]="username" required>
+ <input matInput i18n-placeholder="@@username" placeholder="Username" [(ngModel)]="username" required>
6
</mat-form-field>
7
8
9
- <input matInput type="password" placeholder="Password" [(ngModel)]="password" required>
+ <input matInput i18n-placeholder="@@password" type="password" placeholder="Password" [(ngModel)]="password" required>
10
11
12
<button i18n="@@submit" mat-button (click)="onSubmit($event)">Submit</button>
0 commit comments