-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (48 loc) · 2.81 KB
/
index.html
File metadata and controls
55 lines (48 loc) · 2.81 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BitControl</title>
<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=Comfortaa&family=Righteous&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<main class="container d-flex flex-column justify-content-between align-items-center">
<div class="d-flex flex-column align-items-center justify-content-center">
<img id="logoBC" class="img-fluid" src="./assets/BC_Logo.svg" alt="Logo BitControl">
<h1 id="textBC">BitControl</h1>
</div>
<section class="mt-3 d-flex flex-column align-items-center">
<p class="text-center">Conecte sua carteira digital!</p>
<a href="dashboard.html" id="loginBTN" class="btn btn-outline-primary">
<svg id="trustLogo" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 1024 1024" fill="none">
<path d="M0 260C0 116.406 116.406 0 260 0H764C907.594 0 1024 116.406 1024 260V764C1024 907.594 907.594 1024 764 1024H260C116.406 1024 0 907.594 0 764V260Z" fill="transparent"/>
<path d="M512.3 215C615.619 301.288 734.101 295.966 767.953 295.966C760.548 786.707 704.128 689.395 512.3 827C320.472 689.395 264.405 786.707 257 295.966C290.499 295.966 408.981 301.288 512.3 215Z" stroke="#3375BB" stroke-width="70" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span>Trust Wallet</span>
</a>
<a href="createAcc.html" id="createAccBTN" class="btn btn-outline-primary mt-2">
<span>Criar conta com email e senha</span>
</a>
<div>
<h2 id="subTitle" class="mt-3">Finance your future!</h2>
<div class="line"></div>
</div>
</section>
<footer class="d-flex flex-column align-items-center">
<div>
<p class="mt-3">Política de Privacidade</p>
<div class="line"></div>
</div>
</footer>
</main>
<script src="./js/popper.js"></script>
<script src="./js/bootstrap.js"></script>
</body>
</html>