Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 7.06 KB | None | 0 0
  1. <wicket:extend>
  2.     <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
  3. <link rel="stylesheet" href="/css/jquery-ui-1.8.11.custom.css">
  4. <script type="text/javascript" src="js/jquery-1.5.1.js"></script>
  5. <script type="text/javascript" src="js/jquery.ui.core.js"></script>
  6. <script type="text/javascript" src="js/jquery.ui.widget.js" ></script>
  7. <script type="text/javascript" src="js/jquery.ui.accordion.js" ></script>
  8. <script type="text/javascript" >
  9.     $(function() {
  10.         $( "#accordion" ).accordion({
  11.             collapsible: true,
  12.             autoHeight: false
  13.         });
  14.     });
  15. </script>
  16.  
  17. <div class="demo">
  18. <table width="890">
  19.     <tr>
  20.         <td>
  21.             <a>
  22.                 <img src="images/adminMovies.png" width="210" height="35" />
  23.             </a>
  24.         </td>
  25.     </tr>
  26. </table>
  27. <div id="accordion">
  28.     <h3><a href="#">Search Movies</a></h3>
  29.     <div>
  30.         <p>
  31.             <div class="pretraga" align="center">
  32.                 <form wicket:id="searchMoviesForm">
  33.                     <table>
  34.                         <tr>
  35.                             <td>
  36.                                 <label>Search:</label>
  37.                             </td>
  38.                             <td>
  39.                                 <input type="text" wicket:id="keyword" id="keywordSearch"/>
  40.                             </td>
  41.                             <td>
  42.                                 <select wicket:id="choice" id="choiceSearch">
  43.                                     <option>Option 1</option>
  44.                                     <option>Option 2</option>
  45.                                 </select>
  46.                             </td>
  47.                             <td>
  48.                                 <label>
  49.                                     <input class="button" type="submit"  value="Search"/>
  50.                                 </label>
  51.                             </td>
  52.                         </tr>
  53.                     </table>
  54.                 </form>
  55.             </div>
  56.             <div class="userList">          
  57.                 <table width="800" border="0" align="left">
  58.                     <tr>
  59.                         <th>Name</th>
  60.                         <th>Genre</th>
  61.                         <th>Year</th>
  62.                         <th>Price</th>
  63.                         <th>Action</th>
  64.                     </tr>
  65.                     <div wicket:id=moviesListView >
  66.                         <tr>
  67.                             <td>
  68.                                 <strong><a wicket:id="name"></a></strong>
  69.                             </td>
  70.                             <td>
  71.                                 <a wicket:id="genre"></a>
  72.                             </td>
  73.                             <td>
  74.                                 <a wicket:id="year"></a>
  75.                             </td>
  76.                             <td>
  77.                                 <a wicket:id="price"></a>
  78.                             </td>
  79.                             <td>
  80.                                 <a wicket:id="edit" href="#" >edit</a>
  81.                                 <a>/</a>
  82.                                 <a wicket:id="delete" href="#" >delete</a>
  83.                                
  84.                             </td>
  85.                          </tr>
  86.                     </div>
  87.                 </table>                                              
  88.                 <div wicket:id="navigator" align="center"></div>
  89.             </div>
  90.         </p>
  91.     </div>
  92.     <h3><a href="#">Add Movie</a></h3>
  93.     <div>
  94.         <p>
  95.             <form wicket:id="addMovieForm" id="contactform" >                                                              
  96.                 <span wicket:id="feedback"></span>
  97.                 <p class="no-border">
  98.                     <strong>Please fill in all the fields</strong>
  99.                 </p>  
  100.                 <table class="formFieldTable">
  101.                     <tr>
  102.                         <td>
  103.                             <label for="nameAdd">Name</label><br />
  104.                             <input wicket:id="nameAdd" id="nameAdd" type="text" tabindex="1" />
  105.                         </td>
  106.                         <td>
  107.                             <label for="genreAdd">Genre</label><br />
  108.                             <select  wicket:id="genreAdd" id="genreAdd"  type="text" tabindex="3" >
  109.                                 <option>Option 1</option>
  110.                                 <option>Option 2</option>
  111.                             </select>
  112.                         </td>
  113.                     </tr>
  114.                     <tr>
  115.                        
  116.                         <td>
  117.                             <label for="yearAdd">Year</label><br />
  118.                             <input wicket:id="yearAdd" id="yearAdd" type="text" tabindex="4" />
  119.                         </td>
  120.                     </tr>
  121.                     <tr>
  122.                         <td colspan="2">
  123.                             <label for="descriptionAdd">Description</label><br />
  124.                             <textarea wicket:id="descriptionAdd" id="descriptionAdd" rows="7" cols="20" tabindex="5"></textarea>
  125.                         </td>
  126.                     </tr>
  127.                     <tr>
  128.                         <td colspan="2">
  129.                             <label for="crewAdd">Crew</label><br />
  130.                             <textarea wicket:id="crewAdd" id="crewAdd" rows="5" cols="20" tabindex="7"></textarea>
  131.                         </td>
  132.                     </tr>
  133.                     <tr>
  134.                         <td>
  135.                             <label for="priceAdd">Price</label><br />
  136.                             <input wicket:id="priceAdd" id="priceAdd" type="text" tabindex="8" />
  137.                         </td>
  138.                     </tr>
  139.                     <tr>
  140.                         <td colspan="2">
  141.                             <p class="no-border" align="center">
  142.                                 <input wicket:id="addSave" class="button" type="submit" value="Add" />
  143.                                 <input class="button" type="reset" value="Cancel" />   
  144.                             </p>
  145.                         </td>
  146.                     </tr>
  147.                 </table>                                          
  148.             </form>
  149.            
  150.         </p>
  151.     </div>
  152.     <h3><a href="#">Edit Movie</a></h3>
  153.         <div>
  154.             <p>
  155.                 <form wicket:id="editMovieForm" id="contactform" >                                                              
  156.                     <span wicket:id="feedback"></span>
  157.                     <p class="no-border">
  158.                         <strong>Please fill in all the fields</strong>
  159.                     </p>  
  160.                     <table class="formFieldTable">
  161.                         <tr>
  162.                             <td>
  163.                                 <label for="nameEdit">Name</label><br />
  164.                                 <input wicket:id="nameEdit" id="nameEdit" type="text" tabindex="1" />
  165.                             </td>
  166.                             <td>
  167.                                 <label for="genreEdit">Genre</label><br />
  168.                                 <select  wicket:id="genreEdit" id="genreEdit"  type="text" tabindex="3" >
  169.                                     <option>Option 1</option>
  170.                                     <option>Option 2</option>
  171.                                 </select>
  172.                             </td>
  173.                         </tr>
  174.                         <tr>
  175.                            
  176.                             <td>
  177.                                 <label for="yearEdit">Year</label><br />
  178.                                 <input wicket:id="yearEdit" id="yearEdit" type="text" tabindex="4" />
  179.                             </td>
  180.                         </tr>
  181.                         <tr>
  182.                             <td colspan="2">
  183.                                 <label for="descriptionEdit">Description</label><br />
  184.                                 <textarea wicket:id="descriptionEdit" id="descriptionEdit" rows="7" cols="20" tabindex="5"></textarea>
  185.                             </td>
  186.                         </tr>
  187.                         <tr>
  188.                             <td colspan="2">
  189.                                 <label for="crewEdit">Crew</label><br />
  190.                                 <textarea wicket:id="crewEdit" id="crewEdit" rows="5" cols="20" tabindex="7"></textarea>
  191.                             </td>
  192.                         </tr>
  193.                         <tr>
  194.                             <td>
  195.                                 <label for="priceEdit">Price</label><br />
  196.                                 <input wicket:id="priceEdit" id="priceEdit" type="text" tabindex="8" />
  197.                             </td>
  198.                         </tr>
  199.                         <tr>
  200.                             <td colspan="2">
  201.                                 <p class="no-border" align="center">
  202.                                     <input wicket:id="editSave" class="button" type="submit" value="Save" />
  203.                                     <input class="button" type="reset" value="Cancel" />   
  204.                                 </p>
  205.                             </td>
  206.                         </tr>
  207.                         <tr>
  208.                             <td colspan="2">
  209.                                 <a class="more" wicket:id=imageAddLink><span wicket:id=imageAddLinkLabel>Upload</span></a>
  210.                             </td>
  211.                         </tr>
  212.                     </table>                                            
  213.                 </form>
  214.             </p>
  215.     </div>
  216. </div>
  217.  
  218. </div><!-- End demo -->
  219.  
  220. <div style="display: none;" class="demo-description">
  221. <p>Click tabs to swap between content that is broken into logical sections.</p>
  222. </div><!-- End demo-description -->
  223. </wicket:extend>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement