-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (69 loc) · 1.98 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<title>learnBOT</title>
</head>
<body class="custom-body">
<div class="logo-login">
<img src="img/logo-login.png" alt="logo" />
</div>
<div class="intro">
<h5>O JOGO QUE TE <b>ENSINA</b> A INVESTIR</h5>
</div>
<div class="form-box">
<img src="img/user.svg" alt="logo" />
<br />
<div class="margin-top-one">
<form
method="post"
name="formulario-do-corpo"
action="../learn-bot/page.html"
>
<div class="form-group">
<input
id="icon-user"
style="text-indent:30px"
;
type="text"
name="nome"
class="form-control"
placeholder="USUÁRIO"
maxlength="50"
required
/>
</div>
<div class="form-group">
<input
id="icon-pass"
style="text-indent:30px"
;
type="password"
name="password"
class="form-control"
placeholder="SENHA"
maxlength="50"
required
/>
</div>
<div class="submit">
<input type="submit" value="ENTRAR" class="btn btn-secondary" />
</div>
</form>
</div>
</div>
</body>
</html>