forked from platzi/consumo-api-rest-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (45 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Gatitos aleatorios</title>
</head>
<body>
<h1>Michis App</h1>
<span id="error"></span>
<section id="randomMichis">
<h2>Michis aleatorios</h2>
<article>
<img id="img1" width="150" alt="Foto gatito aleatorio">
<button id="btn1">
Guardar michi en favoritos
</button>
</article>
<article>
<img id="img2" width="150" alt="Foto gatito aleatorio">
<button id="btn2">
Guardar michi en favoritos
</button>
</article>
<button onclick="loadRandomMichis()">Recargar</button>
</section>
<section id="uploadingMichi">
<h2>Sube la foto de tu michi</h2>
<form id="uploadingForm">
<input id="file" type="file" name="file" />
<button type="button" onclick="uploadMichiPhoto()">Subit foto de michi</button>
</form>
</section>
<section id="favoriteMichis">
<h2>Michis favoritos</h2>
<article>
<img id="img1" width="150" alt="Foto gatito aleatorio">
<button>Sacar al michi de favoritos</button>
</article>
</section>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="./main.js"></script>
</body>
</html>