Browse Source

Create

master
Juanjo 1 year ago
parent
commit
2456aad702
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/resources/templates/nuevo_usuario.html

+ 2
- 2
src/main/resources/templates/nuevo_usuario.html View File

@ -26,8 +26,8 @@
</thead>
<tbody>
<th><input type="text" name="idUsuario" th:field="*{idUsuario}" class="form-control" placeholder="Nº de usuario" required></th>
<td><input type="text" name="nombres" th:field="*{nombres}" class="form-control" placeholder="Nombre y apellidos" required></td>
<th><input type="text" name="idUsuario" th:field="${user.idUsuario}" class="form-control" placeholder="Nº de usuario" required></th>
<td><input type="text" name="nombres" th:field="${user.nombres}" class="form-control" placeholder="Nombre y apellidos" required></td>
<td><button class="btn btn-success" >CREAR</button></td>
</tbody>


Loading…
Cancel
Save