-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 3.01 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">
<title>Api Rest Fetch Crud</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body style="background-image: url('./assets/goldensun.jpg');">
<div class="container col-md-5" style="
background: #ffffffaa;">
<div class="container d-flex flex-column justify-content-center align-items-center">
<h1 class="text-center">Api Rest Fetch Crud</h1>
<section class="crud">
<article class="d-flex flex-column justify-content-center align-items-center">
<h2 class="crud-title">Agregar Personaje personalizado:</h2>
<form class="crud-form d-flex flex-column justify-content-center align-items-center">
<input type="text" name="nombre" placeholder="Nombre personaje" required>
<br>
<input type="text" name="claseinicial" align-self: center !important;" placeholder="Clase inicial" required>
<br>
<input type="submit" value="Enviar">
<input type="hidden" name="id">
</form>
</article>
<article>
<h2 class="text-center">Ver Personajes Golden Sun</h2>
</div>
<table class="crud-table table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Nombre</th>
<th scope="col">Clase Inicial</th>
<th scope="col">Accion</th>
</tr>
</thead>
<tbody></tbody>
</table>
</article>
</section>
<template id="crud-template">
<tr>
<td scope="row" class="id-table"></td>
<td class="name"></td>
<td class="clase-inicial"></td>
<td>
<button class="edit">Editar</button>
<button class="delete">Eliminar</button>
<button class="searchimage">Bus. Imagen</button>
</td>
</tr>
</template>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
<script src="./app.js"></script>
</body>
</html>