-
Notifications
You must be signed in to change notification settings - Fork 0
/
connect.html
56 lines (54 loc) · 2.44 KB
/
connect.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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="icon" type="image/x-icon" href="/img/LOGO.png">
<title>EthWallet</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link href="/css/mycss.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- navbar -->
<nav class="navbar">
<div class="container-fluid">
<h4><img src="/img/LOGO.png" height="40" width="40"><b> Ethereum Wallet</b></h4>
<!-- <button class="btn btn-success" id="CntBtn">Create Wallet</button> -->
<!-- <form class="d-flex">
<input class="form-control me-2" placeholder="#mew ID" >
<button class="btn btn-outline-light" id="createWallet">Create/Login</button>
</form> -->
</div>
</nav>
</head>
<body class="background">
<div class="container connect" >
<div class="card " >
<div class="top my-4 mx-4"><h1>Welcome to Ethereum Wallet</h1></div>
<div class="center mx-4">
<h6><b>Create new wallet :</b></h6>
<span class="d-flex">
<input class="form-control me-2" placeholder="unique #mew_id" id="newWallet" required="true" >
<button class="btn btn-outline-primary" id="createWallet">Create</button>
</span>
<h5 class="mt-2 mb-3"><b>OR</b></h5>
<h6><b>Login to wallet :</b></h6>
<span class="d-flex">
<input class="form-control me-2" placeholder="your #mew_id" id="oldWallet" required="false" >
<button class="btn btn-outline-primary" id="loginWallet" >Login</button>
</span>
</div>
</div>
</div>
<!-- modal start here -->
<!-- modal end here -->
<footer class="foot">
<hr>
<small>© 2020 Copyright: Design and created by Abhay Vishwakarma...</small>
<hr>
</footer>
<script src="https://cdn.ethers.io/lib/ethers-5.2.umd.min.js" type="application/javascript"></script>
<script src="/js/index.js"></script>
</body>
</html>