intro_Django/TiendaOnline/gestionPedidos/templates/busqueda_prods.html

12 lines
262 B
HTML
Raw Normal View History

2020-11-15 02:23:12 -03:00
<html>
<head>
<title>Búsqueda de productos</title>
</head>
<body>
<form action="/buscar/" method="GET">
<input type="text" name="prod">
<input type="submit" value="Buscar">
</form>
</body>
</html>