-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (80 loc) · 3.68 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Automatizador de pronombres</title>
<link href="css/general.css" rel="stylesheet">
<link href="https://emoji-css.afeld.me/emoji.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=MuseoModerno&family=Roboto&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/293847d6a2.js" crossorigin="anonymous"></script>
</head>
<body class="principal">
<header>Automatizador de pronombres <i class="em em-es" aria-role="presentation" aria-label="Spain Flag"></i>
</header>
<div class="wrapper">
<div id="mensagemView"></div>
<section class="conjugacion-verbos">
<form onsubmit="conjugacionController.add(event)">
<div class="verbo-infinitivo">
<label for="verbo">Verbo:</label>
<input type="text" id="verbo" name="verbo">
</div>
<div class="conjugacion">
<table>
<tr>
<td><label for="con-yo">Yo</label></td>
<td><input type="text" id="con-yo" name="con-yo"></td>
</tr>
<tr>
<td><label for="con-tu">Tú</label></td>
<td><input type="text" id="con-tu" name="con-tu"></td>
</tr>
<tr>
<td><label for="con-el">Él | Ella | Usted</label></td>
<td><input type="text" id="con-el" name="con-el"></td>
</tr>
<tr>
<td><label for="con-nosotros">Nosotros | Nosotras</label></td>
<td><input type="text" id="con-nosotros" name="con-nosotros"></td>
</tr>
<tr>
<td><label for="con-vosotros">Vosotros | Vosotras</label></td>
<td><input type="text" id="con-vosotros" name="con-vosotros"></td>
</tr>
<tr>
<td><label for="con-ellos">Ellos | Ellas | Ustedes</label></td>
<td><input type="text" id="con-ellos" name="con-ellos"></td>
</tr>
</table>
</div>
<div class="btn-agregar">
<button type="submit" class="rainbow rainbow-1">
Agregar conjugación
</button>
</div>
</form>
</section>
<section class="resultados">
<div id="conjugacionView"></div>
</section>
</div>
<div id="footerView"></div>
<script src="js/models/Mensagem.js"></script>
<script src="js/models/Conjugacion.js"></script>
<script src="js/models/ListaConjugaciones.js"></script>
<script src="js/controllers/ConjugacionController.js"></script>
<script src="js/controllers/ExportacaoController.js"></script>
<script src="js/views/View.js"></script>
<script src="js/views/MensagemView.js"></script>
<script src="js/views/ConjugacionView.js"></script>
<script src="js/views/ExportacaoView.js"></script>
<script src="js/views/FooterView.js"></script>
<script>
let footerView = new FooterView(document.getElementById('footerView'));
footerView.update();
let conjugacionController = new ConjugacionController();
let exportacaoController = new ExportacaoController();
</script>
</body>
</html>