-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
seed.html
executable file
·60 lines (56 loc) · 2.45 KB
/
seed.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- <link rel="shortcut icon" type="image/png" href="/images/favicon.png"> -->
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Roboto+Mono:wght@500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/css/seed.css">
<link rel="shortcut icon" type="image/png" href="/images/favicon.png">
<title>WizDwarfs</title>
</head>
<body>
<div class="div-form">
<img src="/images/logo.png" alt="WizDwarfs" class="img-logo" />
<h4>Ethereum Account</h4>
<form action="/createWallet" method="post" class="pay-form">
<div class="form-email">
<div class="form-group has-search">
<div class="enable-disable-0">
<button type="button" class="btn btn-email" id="email" onclick="showMeEmail()">
<i class="fa fa-user" aria-hidden="true"></i>
</button>
<input type="email" class="form-control" id="inlineFormInput" placeholder="Email" name="email"
required>
</div>
<div class="enable-disable-0">
<button type="button" class="btn btn-password" id="pass" onclick="showMePassword()">
<i class="fa fa-lock" aria-hidden="true"></i>
</button>
<input type="password" class="form-control" id="inline" placeholder="Password" name="password"
required>
</div>
<div class="btn-terms">
<input type="radio" id="agreeTerms" class="terms" name="agreeTerms" required>
<a href="/terms"><span class="span-link">terms accepted</span></a>
<!-- <div class="ch"
<input type="checkbox" name="allow" id="allow"><span>Store data on Blockchain</span> -->
</div>
<div class="div-sign">
<a href="/open" class="btn btn-light"> <i class="fa fa-user-circle" aria-hidden="true"></i>
I'm a member ! </a>
</div>
<button type="submit" class="btn btn-submit" id="btnSubmit" disabled="true">
<i class="fa fa-arrow-right" aria-hidden="true"></i>Next
</button>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="/js/seed.js"></script>
</body>
</html>