Advertisement
Guest User

Untitled

a guest
Jan 31st, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <h2>Login</h2>
  2.  
  3. <form (submit)="onSubmit($event)">
  4. <fieldset>
  5. <legend>Login</legend>
  6.  
  7. <label for="input_username">Username: </label><input id="input_username" type="text" name="username" [(ngModel)]="username" />
  8. <label for="input_password">Password: </label><input id="input_password" type="password" name="password" [(ngModel)]="password" />
  9.  
  10. <p class="error_message">{{ errorMessage }}&nbsp;</p>
  11.  
  12. <input type="submit" value="Login" />
  13.  
  14. </fieldset>
  15. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement