-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagregarBebida.html
More file actions
43 lines (38 loc) · 1.47 KB
/
agregarBebida.html
File metadata and controls
43 lines (38 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1> - Práctica 5.a) Servlets y Acceso a Datos mediante un Pool de conexiones</h1>
<!--onsubmit="return validar(this);-->
<form id="form1" action="agregarBebida" method="post">
<table>
<tr>
<td><label for="nombre">Nombre</label></td>
<td><input id="nombre" type="text" name="nombre" required /></td>
</tr>
<tr>
<td><label for="descripcion">Descripcion</label></td>
<td><input id="descripcion" type="text" name="descripcion" /></td>
</tr>
<tr>
<td><label for="precio">Precio</label></td>
<td><input id="precio" type="number" name="precio" /></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Guardar" /></td>
</tr>
</table>
</form>
<button> <a href="index.html">Volver Menu</a> </button>
</body>
</html>