-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.28 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.28 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FreeRoad - Login</title>
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<main class="login-screen">
<section class="login-container">
<h1 class="logo">FreeRoad</h1>
<div class="login-box">
<h2>Login</h2>
<p class="subtitle">Utilize suas credenciais para acessar sua conta</p>
<form action="table.html" method="get" autocomplete="off">
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" autocomplete="off" required>
</div>
<div class="form-group">
<label for="senha">Senha</label>
<input type="password" id="senha" name="senha" autocomplete="off" required>
</div>
<button type="submit">Login</button>
</form>
</div>
</section>
</main>
</body>
</html>