-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstep1.html
More file actions
68 lines (68 loc) · 2.3 KB
/
step1.html
File metadata and controls
68 lines (68 loc) · 2.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<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="stylesheet" href="./assets/stylesheets/application.css">
</head>
<body>
<header class="header">
<div class="container">
<a href="#" class="logo"></a>
</div>
</header>
<section class="container content">
<h1 class="title">Step 1</h1>
<p class="description">Bridge workflow setup</p>
<div class="setup">
<div class="setup-i setup-i_network">
<div class="control">
<label for="" class="label">Network</label>
<select name="" id="" class="select">
<option value="">Mainnet</option>
</select>
<p>Left side of the bridge is where the value is transferred from</p>
</div>
</div>
<div class="setup-i setup-i_bridge">
<div class="control">
<label for="" class="label">Bridge Action</label>
<select name="" id="" class="select">
<option value="">ERC-20 Swap</option>
</select>
<p>Intended action on the bridge, e.g., swap of tokens, cross chain crowdsale, cross chain emission swap</p>
</div>
</div>
<div class="setup-i setup-i_network">
<div class="control">
<label for="" class="label">Oracles POA Network</label>
<select name="" id="" class="select">
<option value="">Mainnet</option>
</select>
<p>Right side of the bridge is where the value is transferred to</p>
</div>
</div>
</div>
<a href="#" class="button">Continue</a>
<p class="next-step-description">
<span>Next Step</span>
Bridge and contracts setup
</p>
</section>
<footer class="footer">
<div class="container">
<p class="rights">2018 Oracles Network. All rights reserved.</p>
<a href="#" class="logo"></a>
<div class="socials">
<a href="#" class="social social_reddit"></a>
<a href="#" class="social social_twitter"></a>
<a href="#" class="social social_oracles"></a>
<a href="#" class="social social_telegram"></a>
<a href="#" class="social social_github"></a>
</div>
</div>
</footer>
</body>
</html>