Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.94 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>Gestión de Usuario</title>
  4.         <!--Import Google Icon Font-->
  5.         <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  6.         <!--Import materialize.css-->
  7.         <link type="text/css" rel="stylesheet" href="css/materialize.min.css"  media="screen,projection"/>
  8.  
  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.             <div class="row">
  15.                 <div class="col s12">
  16.                     <jsp:include page="nav.jsp" />
  17.                 </div>
  18.                 <div class="col s6 offset-s3">
  19.                     <table class="bordered centered">
  20.                         <thead>
  21.                             <tr>
  22.                                 <th>Nombre</th>
  23.                                 <th>Apellido</th>
  24.                                 <th>Usuario</th>
  25.                                 <th>Password</th>
  26.                             </tr>
  27.                         </thead>
  28.                         <tbody>
  29.                            
  30.                                 <tr>
  31.                                     <td></td>
  32.                                     <td></td>
  33.                                     <td></td>
  34.                                     <td></td>
  35.                                 </tr>
  36.                            
  37.                         </tbody>
  38.                     </table>
  39.                 </div>
  40.             </div>
  41.         </div>
  42.         <!--Import jQuery before materialize.js-->
  43.         <script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
  44.         <script type="text/javascript" src="js/materialize.min.js"></script>
  45.         <script>
  46.             $(function () {
  47.                 $(".button-collapse").sideNav();
  48.             });
  49.         </script>
  50.     </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement