Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Compra de Productos</title>
  5.         <!--Import Google Icon Font-->
  6.         <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  7.         <!--Import materialize.css-->
  8.         <link type="text/css" rel="stylesheet" href="css/materialize.min.css"  media="screen,projection"/>
  9.         <!--Let browser know website is optimized for mobile-->
  10.         <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  11.     </head>
  12.     <body>
  13.         <div class="container">
  14.            
  15.             <div class="row">
  16.                 <nav class="col s12">
  17.                     <jsp:include page="navprod.jsp" />
  18.                 </nav>
  19.             </div>
  20.             <div class="row">
  21.                 <div class="col s12">
  22.                     <h2 class="center-align">Lista de Productos</h2>
  23.                     <div class="col s6 offset-s3">
  24.                     <table class="bordered centered">
  25.                         <thead>
  26.                             <tr>
  27.                                 <th>Descripción</th>
  28.                                 <th>Precio</th>
  29.                                 <th> </th>
  30.                             </tr>
  31.                         </thead>
  32.                         <tbody>
  33.                        
  34.                                 <tr>
  35.                                     <td></td>
  36.                                     <td></td>
  37.                                     <td> <a class="btn-floating red"
  38.                                                href="detalle.jsp?codigo=${p.codigo}">
  39.                                             <i class="material-icons">add</i>
  40.                                         </a>
  41.                                     </td>
  42.                                 </tr>
  43.                              
  44.                         </tbody>
  45.                     </table>
  46.                 </div>
  47.                 </div>
  48.             </div>
  49.            
  50.            
  51.                 <div class="row">
  52.                 <div class="col s12">
  53.                     <h3>Debe iniciar sesión para acceder a los contenidos.</h3>
  54.                     <a href="login.jsp">Ir al login</a>
  55.                 </div>
  56.             </div>
  57.            
  58.         </div>
  59.         <!--Import jQuery before materialize.js-->
  60.         <script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
  61.         <script type="text/javascript" src="js/materialize.min.js"></script>
  62.         <script>
  63.             $(function () {
  64.                 $(".button-collapse").sideNav();
  65.             });
  66.         </script>
  67.     </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement