forked from ngnrs/js-code-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (21 loc) · 771 Bytes
/
index.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fancy Form</title>
<!-- You may add more stuff here -->
<script src="script.js"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<!-- You may wrap the form in your own elements if necessary. -->
<form onsubmit="return !1">
<label for="input-address">Bitcoin Address</label>
<input id="input-address" placeholder="16q4PinynazaMYfv24juNLkbjkDQxJo2dc" />
<label for="input-amount">Amount to send</label>
<input id="input-amount" placeholder="0.0000" />
<label for="input-otp">OTP Authentication</label>
<input type="number" id="input-otp" placeholder="SMS OTP" />
<button>SEND BTC</button>
</form>
</body>
</html>