Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Welcome!</title>
  5. </head>
  6. <body>
  7. <form method="POST" action="http://localhost:9000/#/admin/user-management/david/edit">
  8. <div class="form-group" [hidden]="!user.id">
  9. <label>ID</label>
  10. <input type="text" class="form-control" name="id"
  11. value="16" readonly>
  12. </div>
  13.  
  14. <div class="form-group">
  15. <label class="form-control-label">Login</label>
  16. <input type="text" class="form-control" name="login"
  17. value="david">
  18. </div>
  19. </div>
  20. <div class="form-group">
  21. <label class="form-control-label">First Name</label>
  22. <input type="text" class="form-control" name="firstName" value="david">
  23. </div>
  24. <div class="form-group">
  25. <label>Last Name</label>
  26. <input type="text" class="form-control" name="lastName" value="david">
  27.  
  28. </div>
  29. <div class="form-group">
  30. <label class="form-control-label">Email</label>
  31. <input type="email" class="form-control" name="email" value="david@localhost.com">
  32.  
  33. </div>
  34. <div class="form-check">
  35. <label class="form-check-label" for="activated">
  36. <input class="form-check-input" [disabled]="user.id === null" type="checkbox" id="activated" name="activated" value="true">
  37. <span>Activated</span>
  38. </label>
  39. </div>
  40.  
  41. <div class="form-group">
  42. <label>Profiles</label>
  43. <input type="text" class="form-control" name="authority" value="ROLE_ADMIN">
  44. <input type="submit" name="submit" value="Submit">
  45. </div>
  46. </div>
  47. </form>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement