-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 1.17 KB
/
index.html
File metadata and controls
37 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
<title>Document</title>
<nav aria-label="breadcrumb">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/Crear">Category</a></li>
</ul>
</nav>
</head>
<body>
<article>
<form action="/Crear" method="post">
<label for="Nombre">Nombre</label>
<input type="text" name="Nombre" placeholder="Ingrese el nombre del estudiante">
<label for="Apellido">Apellido</label>
<input type="text" name="Apellido" placeholder="Ingrese el apellido del estudiante">
<label for="Ciclo">Ciclo</label>
<input type="text" name="Ciclo" placeholder="Ingrese el ciclo del estudiante">
<label for="Programa">Programa</label>
<input type="text" name="Programa" placeholder="Ingrese el programa del estudiante">
<input type="submit" placeholder="Crear Estudiante">
</form>
</article>
</body>
</html>