-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (37 loc) · 1.37 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="assets/alt.svg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Antares</title>
</head>
<body>
<main>
<div class="main">
<div class="card">
<div class="left">
<form action="pages.html">
<h1>Login Antares </h1>
</div>
<div class="textfield">
<i class="bi bi-person"></i>
<input type="text" placeholder="Insira seu usúario" required>
</div>
<br>
<div class="textfield">
<i class="bi bi-key"></i>
<input type="password" placeholder="Insira sua senha" required>
</div>
<br>
<button type="submit" class="btn-login">Login</button>
<!-- <input type="submit" value="Log-in" class="btn-login"></input> -->
</form>
</div>
</div>
</main>
</body>
</html>