Skip to content

Commit

Permalink
Merge pull request #49 from JonathanXInformatica/main
Browse files Browse the repository at this point in the history
fix: modifiaciones menores al front
  • Loading branch information
JonathanXInformatica authored May 3, 2024
2 parents bc53cf4 + f531180 commit 3d26f7a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
8 changes: 1 addition & 7 deletions public/src/pages/form-creacionproductos.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<img class="img-fluid" src="../../assets/img/Logo azul prusiano.png" alt="Logo" style="max-width: 150px;">
</a>
<nav class="col-4 col-md-3 navbar navbar-expand-lg navbar-light bg-white">
<div class="container-fluid">
<div class="container-fluid justify-content-end">
<button class="btn btn-lg btn-primary mt-1"><a class="nav-link" href="/index.html">Regresar</a></button>
</div>
</nav>
Expand All @@ -39,12 +39,6 @@
<h1 class="h2 mt-0">Agrega productos</h1>
<p class="mb-1" style="color: #45526e;">Ingresa la información para agregar un nuevo producto.</p>
<div class="row">
<div class="col-md-5">
<div class="input-group mb-1 mt-1">
<span class="input-group-text">ID producto</span>
<input type="text" class="form-control" id="newItemId" placeholder="Id" required>
</div>
</div>
<div class="col-md-7">
<div class="input-group mb-1 mt-1">
<span class="input-group-text">Nombre</span>
Expand Down
17 changes: 16 additions & 1 deletion public/src/pages/registrousuario.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,23 @@
<h1 class="text-center mb-4">Registro</h1>
<form id="formulario-registro" class="needs-validation" novalidate>
<div class="mb-3">
<label for="nombre" class="form-label">Nombre:</label>
<label for="nombre" class="form-label">Nombre/s:</label>
<input type="text" class="form-control" id="nombre" required>
<div class="invalid-feedback">Por favor, ingresa tu nombre/s.</div>
</div>
<div class="mb-3">
<label for="apellidos" class="form-label">Apellidos:</label>
<input type="text" class="form-control" id="apellidos" required>
<div class="invalid-feedback">Por favor, ingresa tus apellidos.</div>
</div>
<div class="mb-3">
<label for="genero" class="form-label">genero:</label>
<select name="genero" id="genero">
<option value="X" selected>Selecciona una opcion</option>
<option value="H" >Hombre</option>
<option value="M">Mujer</option>
<option value="N">Prefiero No Decir</option>
</select>
<div class="invalid-feedback">Por favor, ingresa tu nombre.</div>
</div>
<div class="mb-3">
Expand Down

0 comments on commit 3d26f7a

Please sign in to comment.