Advertisement
davegimo

usersInterface

Jan 20th, 2020
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.26 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <html lang="en">
  4. <head>
  5.     <meta charset="utf-8">
  6.  
  7.     <title>The HTML5 Herald</title>
  8.     <meta name="description" content="The HTML5 Herald">
  9.     <meta name="author" content="SitePoint">
  10.  
  11.     <link rel="stylesheet" href="css/styles.css?v=1.0">
  12.  
  13. </head>
  14.  
  15. <body>
  16.  
  17. <table style="width:100%">
  18.     <tr>
  19.         <th>Q-ID</th>
  20.         <th>Doku-ID</th>
  21.         <th>status</th>
  22.         <th></th>
  23.     </tr>
  24.  
  25.  
  26.  
  27.         <%for(int i = 0;i<5;i++){ %>
  28.     <tr>
  29.         <td><%=${listValue.get(i)} % </td>  //qid
  30.         <td><%=${listValue.get(i)} % </td>   //dokuID
  31.         <td><%=${listValue.get(i)} % </td>  //status
  32.  
  33.         <% if (listValue.get("status") == "finished") {   %>
  34.         <td><button> Click </button></td>  //this button: onClick redirect to the new page for the orders
  35.         <%} %>
  36.     </tr>
  37.         <%} %>
  38.  
  39.  
  40.  
  41.     <form action="postrequestwhichone?" method="post">
  42.         <td><input type="text" name="" placeholder="" autocomplete="off"></td>
  43.         <td><input type="text" name="" placeholder="" autocomplete="off"></td>
  44.         <td><input type="text" name="" placeholder="" autocomplete="off"></td>
  45.  
  46.  
  47.         <td><button type="submit" name="">Submit</button></td>
  48.  
  49.     </form>
  50.  
  51.  
  52. </table>
  53.  
  54.  
  55.  
  56. </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement