-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (27 loc) · 980 Bytes
/
index.html
File metadata and controls
45 lines (27 loc) · 980 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Antares</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<link rel="shortcut icon" href="assets/alt.svg" type="image/x-icon">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<main>
<form action="pages.html">
<h1>Log in to Antares</h1>
<div class="textfield">
<i class="bi bi-person-circle"></i>
<input type="text" placeholder="Usuário" required>
</div>
<div class="textfield">
<i class="bi bi-key-fill"></i>
<input type="password" placeholder="Senha" required>
</div>
<input class="btn" type="submit" value="E N T R A R">
</form>
</main>
</body>
</html>