-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (109 loc) · 3.62 KB
/
Copy pathindex.html
File metadata and controls
112 lines (109 loc) · 3.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" lang="es" />
<title>Agregar Tarea</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-
T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css"
/>
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<header class="container-encabezado text-center mt-3"></header>
<div class="container-general">
<h2 class="text-center mt-3">Nueva tarea</h2>
<form action="" id="form">
<div class="formulario-container container w-50" id="formulario">
<div class="form-floating">
<input
type="text"
class="form-control"
id="floatingTitulo"
placeholder="Título"
required
/>
<label for="floatingDuracion"
><i class="bi bi-pencil-square"></i> Título de la tarea
</label>
</div>
<div class="form-floating mt-1">
<textarea
class="form-control"
placeholder="Descripción de la tarea"
id="floatingTextarea"
style="height: 100px"
required
></textarea>
<label for="floatingTextarea"
><i class="bi bi-list-task"></i> Descripción</label
>
</div>
<div class="form-floating mt-1">
<input
type="number"
class="form-control"
id="floatingTiempo"
placeholder="Tiempo"
required
/>
<label for="floatingTiempo"
><i class="bi bi-hourglass-split"></i> Tiempo de duración</label
>
</div>
<div class="form-floating mt-1">
<input
type="text"
class="form-control"
id="floatingImagen"
placeholder="Adjunte una imagen"
required
/>
<label for="floatingImagen"
><i class="bi bi-images"></i> Adjunte una imagen
</label>
</div>
<div class="form-floating mt-1">
<input
type="text"
class="form-control"
id="floatingResponsable"
placeholder="Responsable"
required
/>
<label for="floatingResponsable"
><i class="bi bi-person"></i> Responsable</label
>
</div>
<div>
<select class="form-select mt-1" id="select-option" required>
<option value="-1" disabled selected>Seleccione un estado</option>
<option value="Pendiente">Pendiente</option>
<option value="En proceso">En proceso</option>
<option value="Testing">Testing</option>
<option value="Completado">Completado</option>
</select>
</div>
<p id="mensaje"></p>
<button
class="btn btn-success justify-content-center container mt-1 mb-3"
type="submit"
id="submitBtn"
>
Enviar tarea
</button>
</div>
</form>
</div>
<script src="index.js"></script>
</body>
</html>