Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@ taglib prefix="s" uri="http://www.springframework.org/tags"%>
  4. <%@ taglib prefix="sec"
  5. uri="http://www.springframework.org/security/tags"%>
  6. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <link rel="stylesheet"
  13. href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  14. <script
  15. src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  16. <script
  17. src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
  18. <title><s:message code="menu.reservation" /></title>
  19. <style>
  20. .navbar {
  21. margin-bottom: 0;
  22. border-radius: 0;
  23. }
  24.  
  25. .row.content {
  26. height: 450px
  27. }
  28.  
  29. .sidenav {
  30. padding-top: 20px;
  31. background-color: #f1f1f1;
  32. height: 100%;
  33. }
  34.  
  35. footer {
  36. background-color: #555;
  37. color: white;
  38. padding: 15px;
  39. }
  40.  
  41. @media screen and (max-width: 767px) {
  42. .sidenav {
  43. height: auto;
  44. padding: 15px;
  45. }
  46. .row.content {
  47. height: auto;
  48. }
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <%@include file="/WEB-INF/incl/menu.app"%>
  54. <div class="container-fluid text-center">
  55. <div class="row content">
  56. <div class="col-md-10">
  57. <form id="resForm" action="res" method="POST">
  58. <table class="table table-borderless">
  59. <tr>
  60. <td width="130" align="right"><input type="checkbox"
  61. name="relief" />Ulgowy</td>
  62. <td width="130" align="left"><input type="checkbox"
  63. name="normal" />Normalny</td>
  64. </tr>
  65.  
  66. <tr>
  67. <c:forEach var="i" begin="1" end="100">
  68. <input class="mx-2" type="checkbox" id=i>
  69. </c:forEach>
  70. </tr>
  71. <tr>
  72. </tr>
  73. <td colspan="2" align="center" bgcolor="#fff"><input
  74. type="submit" value="<s:message code="button.r"/>"
  75. class="formbutton" />
  76. </table>
  77. </form>
  78. </div>
  79. <div class="col-sm-2 sidenav"></div>
  80. </div>
  81.  
  82. <footer class="container-fluid text-center">
  83. <p>
  84. Kontakt: <a href="">+48 432568465</a>
  85. </p>
  86. </footer>
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement