-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
40 lines (34 loc) · 1.41 KB
/
index3.html
File metadata and controls
40 lines (34 loc) · 1.41 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
36
37
38
39
40
<!DOCTYPE html>
<html lang"pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width"=device-width, initial-scale="1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&family=Stack+Sans+Text:wght@200..700&display=swap"
rel="stylesheet">
<title>Tela de login</title>
</head>
<body>
<div class="container">
<form>
<h1>Entrar na Plataforma</h1>
<div class="input-container">
<input placeholder="Email" type="email" required>
<img width="20" height="20" src="https://img.icons8.com/ios/50/user--v1.png" alt="user--v1"/>
</div>
<div class="input-container">
<input placeholder="Senha" type="password" required>
<img width="20" height="20" src="https://img.icons8.com/ios/50/lock--v1.png" alt="lock--v1"/>
<a href="#">Esqueci minha senha</a>
</div>
<button type="submit" class="submit-button">Entrar</button>
<div class="register-link">
<p>Não está registrado ? <a href="#">Registrar</a> </p>
</div>
</form>
</div>
</body>
</HTML>