-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (54 loc) · 1.77 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/icon-test.png" />
<link rel='stylesheet' href='src/css/style.css'>
<title>Home - DConvertido</title>
</head>
<body>
<div id='container'>
<div class="sobrePar">
<h4 id="nameInfoTexto01"></h4>
<div class="containerTexto">
<p id="infoTexto01"></p>
</div>
</div>
</div>
<div id='container'>
<h1 id='nameLogo'>DConvertido</h1>
<label for="fromValue">Quantidade</label>
<div style="flex-direction: row;">
<input type='text' id='fromValue' maxlength="9" class='valueInput'>
<button id='swapButton'>Trocar</button>
</div>
<div id='fromForm' class='formContainer'>
<p id='fromName'></p>
<p id='errorMessage'>A entrada deve ser um número</p>
<form class='info'>
<select class='currencySelector' id='fromCurrency'></select>
</form>
</div>
<div id='toForm' class='formContainer'>
<p id='toName' value='toName'></p>
<form class='info'>
<select class='currencySelector' id='toCurrency'></select>
</form>
</div>
<button id='convertButton'>Converter</button>
<div style="font-size: 20px;">
Resultado: <input type='text' id='toValue' style="font-size: 20px;" disabled>
</div>
</div>
<div id='container'>
<div class="sobrePar">
<h4 id="nameInfoTexto02"></h4>
<div class="containerTexto">
<p id="infoTexto02"></p>
</div>
</div>
</div>
<script type="module" src="src/js/index.js"></script>
</body>
</html>