Advertisement
Sharishah97

AddTaskSuccess

Nov 14th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  2. pageEncoding="ISO-8859-1"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta charset="ISO-8859-1">
  7. <title>Awesome to-do list</title>
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  10. <style>
  11. body {
  12. font-family: Lucida Console, Helvetica, sans-serif;
  13. }
  14.  
  15. * {
  16. box-sizing: border-box;
  17. }
  18.  
  19. /* style the container */
  20. .container {
  21. position: relative;
  22. border-radius: 5px;
  23. background-color: #f2f2f2;
  24. padding: 20px 0 30px 0;
  25. }
  26.  
  27. /* style inputs and link buttons */
  28.  
  29.  
  30.  
  31. /* style the submit button */
  32. input[type=submit] {
  33. background-color: rgb(255, 102, 163);
  34. color: white;
  35. cursor: pointer;
  36. font-family: Lucida Console, Helvetica, sans-serif;
  37. }
  38.  
  39. input[type=submit]:hover {
  40. background-color: rgb(204, 0, 82);
  41. }
  42.  
  43. /* Clear floats after the columns */
  44. .row:after {
  45. content: "";
  46. display: table;
  47. clear: both;
  48. }
  49.  
  50. /* hide some text on medium and large screens */
  51. .hide-md-lg {
  52. display: none;
  53. }
  54.  
  55. /* Responsive layout - when the screen is less than 650px wide, make the two columns stack on top of each other instead of next to each other */
  56. @media screen and (max-width: 650px) {
  57.  
  58.  
  59. /* show the hidden text on small screens */
  60. .hide-md-lg {
  61. display: block;
  62. text-align: center;
  63. }
  64. }
  65. </style>
  66. </head>
  67. <body>
  68. <div class="container">
  69. <jsp:useBean id="taskbean" class="com.awesometodo.model.TaskBean" scope="request"/>
  70.  
  71. <div class="row">
  72. <h2 style="text-align:center; color: rgb(153, 0, 61);">Thank you for add Task :-)</h2>
  73. <div class="col" style="text-align:center;">
  74.  
  75.  
  76. <br>TASK: <jsp:getProperty property="taskName" name="taskbean"/>
  77. <br>DUE: <jsp:getProperty property="taskDue" name="taskbean"/>
  78. <br>PRIORITY: <jsp:getProperty property="taskPriority" name="taskbean"/>
  79.  
  80.  
  81. </div>
  82. </div>
  83. <a href="viewTask.jsp">View Task</a>
  84.  
  85.  
  86. </div>
  87. </body>
  88. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement