-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (64 loc) · 3.8 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
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DeedsCash</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/icons/favicon.png" type="image/x-icon">
<!-- Google Fonts -->
<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@100;200;300;400;500;600;700;800;900&display=swap"rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<!-- My CSS -->
<link rel="stylesheet" href="css/root-classes.css">
<link rel="stylesheet" href="css/index-style.css">
</head>
<body class="bg-my-blue-2">
<main class="container p-5">
<section class="vector-side">
<img class="img-fluid vector" src="images/vectors/login.jpg" alt="Vector-image">
</section>
<section class="login-side">
<h1 class="mb-5 txt-my-blue-4 fw-bold font-size-logo text-center">DeedsCash</h1>
<form action="#" method="post">
<div class="mb-2">
<label class="form-label txt-my-grey-1 fw-light" for="email">E-mail</label>
<input class="form-control bg-input" type="email" name="email" id="email" required placeholder="[email protected]">
</div>
<div class="mb-4">
<label class="form-label txt-my-grey-1 fw-light" for="password">Senha</label>
<input class="form-control bg-input" type="password" name="password" id="password" required minlength="8" maxlength="16" placeholder="********">
</div>
<div class="d-grid">
<button class="btn btn-lg mb-5 bg-my-blue-4 txt-my-blue-2 fs-3 fw-semibold rounded-pill sign-in" type="submit">Entrar</button>
</div>
</form>
<section class="d-flex mb-5 flex-column align-items-center">
<h2 class="mb-3 txt-my-grey-1 fs-6 fw-light">Entrar com</h2>
<div class="d-flex column-gap-3">
<a href="#">
<img class="social-media" src="images/icons/facebook.png" alt="Logo do Facebook">
</a>
<a href="#">
<img class="social-media" src="images/icons/google.png" alt="Logo do Google">
</a>
<a href="#">
<img class="social-media" src="images/icons/apple.png" alt="Logo da Apple">
</a>
</div>
</section>
<section class="d-flex pt-5 justify-content-between">
<a class="txt-my-blue-4 footer-links" href="pages/signup.html">Cadastre-se</a> <!-- Acessa a página de cadastro -->
<a class="txt-my-blue-4 footer-links" href="pages/main.html">Recuperar senha</a> <!-- Acessa a página principal (provisório) -->
</section>
</section>
</main>
<!-- JS Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>