Advertisement
ADL_Rodrigo_Silva

Untitled

Mar 21st, 2022
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3.     xmlns:th="http://www.thymeleaf.org">
  4. <head>
  5. <title>Inicio Usuario</title>
  6. <link rel="stylesheet"
  7.     href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
  8.     integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
  9.     crossorigin="anonymous">
  10. </head>
  11. <body>
  12.     <ul class="nav justify-content-end">
  13.         <li class="nav-item"><a class="nav-link active" href="#">Usuario</a>
  14.         </li>
  15.         <li class="nav-item"><a class="nav-link" th:href="@{/logout}">Cerrar sesión</a></li>
  16.     </ul>
  17.     <div class="container">
  18.         <div class="col-sm-4"></div>
  19.         <div class="col-sm-4">
  20.        
  21.             <form th:action="@{/users}" method="post" th:object="${detalle}">
  22.                 <div class="form-group">
  23.                     <input type="text" th:field="*{clave}" class="form-control"
  24.                         id="clave" aria-describedby="claveHelp"
  25.                         placeholder="Ingresa nombre de la clave"> <small
  26.                         id="inClave" class="form-text text-muted">Nombre de la
  27.                         clave que se almacenará en sesión.</small>
  28.                 </div>
  29.                 <div class="form-group">
  30.                     <input type="text" th:field="*{valor}" class="form-control"
  31.                         id="valor" aria-describedby="valorHelp"
  32.                         placeholder="Ingresa el contenido"> <small id="inValor"
  33.                         class="form-text text-muted">Contenido de la clave que se
  34.                         almacenará en sesión.</small>
  35.                 </div>
  36.                 <button type="submit" class="btn btn-primary">Agregar</button>
  37.             </form>
  38.         </div>
  39.         <div class="col-sm-4"></div>
  40.         <div class="col-sm-12">
  41.             <table class="table">
  42.                 <thead>
  43.                     <tr>
  44.                         <th scope="col">clave</th>
  45.                         <th scope="col">valor</th>
  46.                     </tr>
  47.                 </thead>
  48.                 <tbody>
  49.                     <tr th:each="detalle: ${valores}">
  50.                         <td th:text="${detalle.clave}" />
  51.                         <td th:text="${detalle.valor}" />
  52.                     </tr>
  53.                 </tbody>
  54.             </table>
  55.         </div>
  56.     </div>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement