-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 2.27 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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>Registro de empleados</title>
<link rel="stylesheet" href="assets/css/chota.min.css" />
<link rel="icon" href="assets/images/favicon.png" />
<script src="assets/js/main.js"></script>
</head>
<body class="bg-dark">
<header class="bg-grey">
<hr />
<h1 class="text-center text-light">Registro de empleados</h1>
<hr />
</header>
<main class="bg-grey container p-3">
<form id="form" style="padding-bottom: 0.6rem" class="text-light">
<fieldset>
<legend class="text-light">Nuevo empleado</legend>
<p class="form-group">
<label for="first-name">Nombre</label>
<input type="text" id="first-name" class="form-control" required />
</p>
<p class="form-group">
<label for="last-name">Apellido</label>
<input type="text" id="last-name" class="form-control" required />
</p>
<p class="form-group">
<label for="email">Correo electrónico</label>
<input type="email" id="email" class="form-control" required />
</p>
<p class="form-group">
<label for="birth-date">Fecha de nacimiento</label>
<input type="date" id="birth-date" class="form-control" required />
</p>
<p class="form-group">
<label for="job-title">Cargo</label>
<input type="text" id="job-title" class="form-control" required />
</p>
<p class="form-group">
<button type="submit" class="button success" id="submit">
Registrar empleado
</button>
<button type="reset" class="button error">Limpiar</button>
</p>
</fieldset>
</form>
</main>
<aside
id="list"
class="card text-light bg-grey"
style="width: 90%; margin: 1rem auto"
>
<header>
<h2 class="text-center">Lista de empleados registrados</h2>
<hr />
</header>
<div id="employees">
<p>Aún no ha registrado empleados.</p>
</div>
</aside>
</body>
</html>