-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathformulario.html
More file actions
29 lines (29 loc) · 807 Bytes
/
formulario.html
File metadata and controls
29 lines (29 loc) · 807 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Agenda</title>
</head>
<body>
<form action="TP1.php" method="POST">
Fecha: <input type="text" name="fecha" pattern="^[0-9]{1,2}\-[0-9]{1,2}\-[0-9]{4}$" required/>
<br/>
Asignatura: <select name="asignatura">
<option value="DIW">DIW</option>
<option value="DAW">DAW</option>
<option value="DWS">DWS</option>
<option value="DWC">DWC</option>
<option value="EIE">EIE</option>
</select>
<br/>
Descripcion: <textarea name="nota"/></textarea>
<br/>
<input type="submit" name="enviar" value="Guardar"/><br/>
<input type="submit" name="mostrar" value="Mostrar"/>
</form>
<form action="TP1.php" method="POST">
<input type="submit" name="mostrarTodo" value="Mostrar Todo"/>
</form>
<div>
</div>
</body>
</html>