Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions console-webapp/src/app/domains/registryLock.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1>Unlock the domain {{ domainListService.selectedDomain }}</h1>
<p>
<mat-label for="password">Password: </mat-label>
<mat-form-field name="password" appearance="outline">
<input matInput type="text" formControlName="password" required />
<input matInput type="password" formControlName="password" required />
</mat-form-field>
</p>
<p>
Expand Down Expand Up @@ -60,7 +60,7 @@ <h1>Lock the domain {{ domainListService.selectedDomain }}</h1>
<p>
<mat-label for="password">Password: </mat-label>
<mat-form-field name="password" appearance="outline">
<input matInput type="text" formControlName="password" required />
<input matInput type="password" formControlName="password" required />
</mat-form-field>
</p>

Expand Down
Loading