Html site 10 5/1/2017


SUBMITTED BY: canonical

DATE: May 2, 2017, 1:57 a.m.

FORMAT: HTML

SIZE: 2.8 kB

HITS: 366

  1. If you want more of my pastes visit: https://randompaste.000webhostapp.com/index.html
  2. --------------------------------------------------------------------------------------
  3. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  4. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  5. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
  6. <html>
  7. <head>
  8. <title>OTOZ Animals - Logowanie</title>
  9. <script type="text/javascript" src="resources/libs/jquery-3.1.1.min.js"></script>
  10. <script type="text/javascript" src="resources/libs/bootstrap-3.3.7-dist/js/bootstrap.min.js"></script>
  11. <link rel="stylesheet" href="resources/libs/bootstrap-3.3.7-dist/css/bootstrap.min.css" />
  12. <link rel="stylesheet" href="resources/libs/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css" />
  13. <link rel="stylesheet" href="resources/style/style.css" />
  14. </head>
  15. <body>
  16. <div class="modal show">
  17. <div class="modal-dialog">
  18. <div class="modal-content">
  19. <div class="modal-header">
  20. <h4 class="modal-title">OTOZ Animals - Zaloguj</h4>
  21. </div>
  22. <form method="post" action="<c:url value="/login"></c:url>">
  23. <div class="modal-body">
  24. <div class="form-group">
  25. <label for="username">Login:</label>
  26. <input class="form-control" type="text" id="username" name="username" placeholder="Login" autofocus="autofocus" />
  27. </div>
  28. <div class="form-group">
  29. <label for="password">Hasło:</label>
  30. <input class="form-control" type="password" id="password" name="password" placeholder="Hasło" />
  31. </div>
  32. </div>
  33. <div class="form-group">
  34. <label for="inspectorates">Inspektorat</label>
  35. <select class="form-control" type="text" id="inspectorates" name="inspectorate" >
  36. <option>Test</option>
  37. <c:forEach var="inspectorate" items="${inspectorates}">
  38. <option >${inspectorate}</option>
  39. </c:forEach>
  40. </select>
  41. </div>
  42. <div class="modal-footer">
  43. <div class="form-group">
  44. <button class="btn btn-primary" type="submit">Zaloguj</button>
  45. </div>
  46. </div>
  47. </form>
  48. </div>
  49. </div>
  50. </div>
  51. </body>
  52. </html>

comments powered by Disqus