Html site 14 5/1/2017


SUBMITTED BY: canonical

DATE: May 2, 2017, 2:06 a.m.

FORMAT: HTML

SIZE: 3.5 kB

HITS: 352

  1. If you want more of my pastes visit: https://randompaste.000webhostapp.com/index.html
  2. --------------------------------------------------------------------------------------
  3. <!DOCTYPE html>
  4. <html xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/html">
  5. <head th:replace="fragments/header :: header">
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  7. </head>
  8. <body>
  9. <div id="app">
  10. <th:block th:include="fragments/nav :: nav" />
  11. <br/><br/><br/><br/>
  12. <div class="container">
  13. <div class="row">
  14. <div class="col-md-8 col-md-offset-2">
  15. <div class="panel panel-default">
  16. <div class="panel-heading">Edit panel</div>
  17. <div class="panel-body">
  18. <form th:action="@{/admin/edit}" method="post">
  19. <div class="form-group row">
  20. <label for="change-email" class="col-md-4 control-label">New Email</label>
  21. <div class="col-md-6">
  22. <input type="email" class="form-control" id="change-email" />
  23. </div>
  24. </div>
  25. <div class="form-group row">
  26. <label for="change-password" class="col-md-4 control-label">New Password</label>
  27. <div class="col-md-6">
  28. <input type="password" class="form-control" id="change-password"/>
  29. </div>
  30. </div>
  31. <div class="form-group row">
  32. <label for="change-name" class="col-md-4 control-label">New Name</label>
  33. <div class="col-md-6">
  34. <input type="text" class="form-control" id="change-name" />
  35. </div>
  36. </div>
  37. <div class="form-group row">
  38. <label for="change-surname" class="col-md-4 control-label">New Surname</label>
  39. <div class="col-md-6">
  40. <input type="text" class="form-control" id="change-surname" />
  41. </div>
  42. </div>
  43. <div class="form-group row">
  44. <label for="change-phone" class="col-md-4 control-label">New Phone</label>
  45. <div class="col-md-6">
  46. <input type="tel" class="form-control" id="change-phone" />
  47. </div>
  48. </div>
  49. <div class="form-group row">
  50. <label for="change-role" class="col-md-4 control-label">New Role</label>
  51. <div class="col-md-6">
  52. <input type="text" class="form-control" id="change-role" />
  53. </div>
  54. </div>
  55. <button type="submit" class="btn btn-primary">Submit</button>
  56. </form>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. <th:block th:include="fragments/footer :: footer" />
  64. </body>
  65. </html>

comments powered by Disqus