|
|
|
@ -1,7 +1,15 @@ |
|
|
|
<form novalidate *ngIf="form" [formGroup]="form" (ngSubmit)="submit()"> |
|
|
|
<div class="form-group"> |
|
|
|
<label for="username">{{ 'AbpIdentity::DisplayName:UserName' | abpLocalization }}</label |
|
|
|
><span> * </span><input type="text" id="username" class="form-control" formControlName="userName" autofocus /> |
|
|
|
><span> * </span |
|
|
|
><input |
|
|
|
type="text" |
|
|
|
id="username" |
|
|
|
class="form-control" |
|
|
|
formControlName="userName" |
|
|
|
autofocus |
|
|
|
(keydown.space)="$event.preventDefault()" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<div class="row"> |
|
|
|
<div class="col col-md-6"> |
|
|
|
|