-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
45 lines (40 loc) · 1.76 KB
/
login.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ETH Wallet</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link href="mycss.css" rel="stylesheet">
</head>
<body>
<!-- login card -->
<section class="vh-100 background" >
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100" >
<div class="col-12 col-md-8 col-lg-6 col-xl-4">
<div class="card shadow-2-strong" style="border-radius: 1rem;">
<div class="card-body py-5 text-center logincard">
<!-- logo & name -->
<div id="logo">
<img src="ethlogo.svg" height="60" width="60" alt="">
<h6 id="LogoName">Ethereum</h6>
<h3>Wallet</h3>
</div>
<small>log in with one of the following :</small>
<div class="d-grid gap-2 my-3">
<button class="btn btn-light btn-outline-danger" type="button"><img src="google.webp" height="25" width="25"> Google</button>
<button class="btn btn-light btn-outline-primary" type="button"><img src="facebook.png" height="30" width="30"> Facebook</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"></script>
</body>
</html>