-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformAsa.html
46 lines (43 loc) · 1.93 KB
/
formAsa.html
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
44
45
46
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Formulario Asamblea</title>
<link rel="stylesheet" href="StyleformAsa.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<script src=asa_script.js></script>
</head>
<body>
<form onsubmit="return submitAsa()" method="POST" id="form">
<div class="form">
<h1>Formulario Asambleas</h1>
<br>
<div class="grupo">
<input type="text" name="" id="titulo" required><span class="barra"></span>
<label for="">Título</label>
</div>
<div class="grupo">
<input type="text" name="" id="lugar" required><span class="barra"></span>
<label for="">Lugar de la Asamblea</label>
</div>
<div class="grupo1">
<div><input type="time" name="" id="tim" required><span class="barra"></span>
<label for="">Hora</label></div>
<div><input type="date" name="" id="date" required><span class="barra"></span>
<label for="">Fecha</label></div>
</div>
<div class="grupo">
<br><hr class="linea"><br>
<label class="des" for="">Descripción y Temas</label>
<textarea class="coments" name="msg" id="description" cols="30" rows="10" placeholder="..." required></textarea>
</div>
<button type="submit" id="bttn" >Enviar</button>
<button type="reset" onclick=" window.open('Asa.html', '_self');">Cancelar</button>
<p class="warnings" id="warnings"></p>
</div>
</form>
<script src="formAsa.js"></script>
</body>
</html>