-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditaCorreosTipo.html
More file actions
33 lines (33 loc) · 1002 Bytes
/
editaCorreosTipo.html
File metadata and controls
33 lines (33 loc) · 1002 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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Edicion de correos</title>
<link rel="icon" type="image/png" href="./IMG/correo.png">
<link rel="stylesheet" href="./CSS/editaCorreosTipo.css">
</head>
<body>
<h1>Editar correos</h1>
<label for="tipo-select">Tipo:</label>
<select id="tipo-select"></select>
<br><br>
<label for="asunto-input">Asunto:</label>
<input type="text" id="asunto-input">
<br><br>
<label for="para-input">Para:</label>
<input type="text" id="para-input">
<br><br>
<label for="cc-input">CC:</label>
<input type="text" id="cc-input">
<br><br>
<label for="cco-input">CCO:</label>
<input type="text" id="cco-input">
<br><br>
<label for="contenido-input">Contenido:</label>
<br>
<textarea id="contenido-input" rows="10" cols="50"></textarea>
<br><br>
<button id="guardar-button">Guardar</button>
<script src="./js/editaCorreosTipo.js"></script>
</body>
</html>