Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <h2>HTML Form</h2>
  2. <div class="col-md-4">
  3. <form #f="ngForm">
  4. <div class="form-group">
  5. <input type="text" name="userName" class="form-control" placeholder="UserName" required minlength="2">
  6. </div>
  7. <div class="form-group">
  8. <input type="text" name="password" class="form-control" placeholder="Password" required>
  9. </div>
  10. <input type="submit" id="btn-login" class="btn btn-primary btn-lg btn-block" value="Login">
  11. <input type="button" id="btn-login" class="btn btn-danger btn-lg btn-block" value="Reset">
  12. </form>
  13. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement