-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 2.4 KB
/
Copy pathindex.html
File metadata and controls
54 lines (54 loc) · 2.4 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./img/favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"/>
<title>Apuntalo</title>
</head>
<body>
<div class="row">
<div class="col-12">
<header class="text-center bg-primary bg-opacity-25 text-primary p-2">
<h1>Apuntalo</h1>
</header>
<div class="row d-flex flex-column justify-content-center align-items-center mt-4">
<div class="col-12 w-50 d-flex">
<button type="button" class="btnCrearNota btn btn-primary me-5"><i class="fa-solid fa-pen-to-square"></i> Crear nueva nota</button>
<div class="search">
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="Buscar nota">
<i class="fa-solid fa-magnifying-glass"></i>
</div>
</div>
<div class="col-12 w-50 mt-4 mb-4">
<form class="container formNota hidden">
<div class="mb-3">
<label for="nput1" class="form-label"> Agregar una nota</label>
<input type="text" class="form-control" id="titleText" placeholder="Titulo de la nota" autocomplete="off" required>
</div>
<div class="mb-3">
<label for="Textarea1" class="form-label">Escriba la nota</label>
<textarea class="form-control" placeholder="Escriba aquí" id="bodyText" rows="3" required></textarea>
</div>
<div class="d-flex justify-content-end">
<button type="submit" class="btn btn-primary me-5 text-end guardarNota"><i class="fa-regular fa-floppy-disk"></i> Guardar</button>
</div>
</form>
</div>
<div class="nota-wrap col-12 w-50">
<button type="button" class="btn btn-danger btnBorrar">Eliminar Seleccionados</button>
<div class="col-12 accordion notasContainer" id="accordion">
</div>
</div>
</div>
</div>
<div class="col mt-4">
<footer>
</footer>
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>