10 lines
306 B
PHP
10 lines
306 B
PHP
<h1>Formulario para Crear Producto</h1>
|
|
<form action="/catalogo" method="POST">
|
|
<label for="nombre">Nombre:</label>
|
|
<input type="text" name="nombre">
|
|
<br>
|
|
<label for="precio">Precio:</label>
|
|
<input type="number" name="precio">
|
|
<br>
|
|
<button type="submit">Guardar</button>
|
|
</form> |