-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
65 lines (52 loc) · 1.62 KB
/
test.html
File metadata and controls
65 lines (52 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cryptoassets</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item"><h1 class="title">
cryptoassets</h1> </a>
<a class="navbar-item">
User
</a>
<a class="navbar-item">
Cars List
</a>
</div>
</nav>
<section class="section">
<div class="container ">
<div style="margin-top: 15%;width: 50%;margin-left: 25%">
<h2 class="title">Transfer Test</h2>
<h2 class="sub-title">Please enter the registration number of the car and wallet address to which the transfer is to be done</h2><br><br>
<div class="field">
<label class="label">Wallet Address</label>
<div class="control">
<input class="input" type="text" placeholder="Text input">
</div>
</div>
<div class="field">
<label class="label">Car Registration Number</label>
<div class="control">
<input class="input" type="text" placeholder="Text input">
</div>
</div>
<div class="field is-grouped">
<div class="control">
<button class="button is-link">Test Transfer</button>
</div>
<div class="control">
<button class="button is-text">Cancel</button>
</div>
</div>
</div>
</div>
</section>
</body>
</html>