-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.65 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="index.css" rel="stylesheet">
<title>Bitpay Test Merchant</title>
</head>
<body>
<div class="login-box">
<h2>Invoice</h2>
<form>
<div class="user-box">
<input id="invoicePrice" type="text" name="price"
required="">
<label>Price</label>
</div>
</form>
<form id="bitpayButton">
<input type="hidden" name="action" value="checkout" />
<input type="hidden" name="posData" value="" />
<input type="hidden" name="data"
value="FXudOarZMFUgYnc80vNRdcuurpST2HeqkDiHTibeOUtn0ZTVSyEb3ThWpRvwx/z8NE5RN3xzxf5jdWnZBlwue893R+TYTwjyDPW4mx+h5iSskcZsxMfKYOBaEoppXwESyz2WpjRtmw+xiVv7F0rAow=="/>
<input type="image"
src="https://staging.bitpay.com/cdn/en_US/bp-btn-pay-currencies.svg"
name="submit" style="width: 210px" alt="BitPay, the easy
way to pay with bitcoins.">
</form>
</div>
<div id="snackbar"></div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.20.0/axios.min.js"
integrity="sha512-quHCp3WbBNkwLfYUMd+KwBAgpVukJu5MncuQaWXgCrfgcxCJAq/fo+oqrRKOj+UKEmyMCG3tb8RB63W+EmrOBg=="crossorigin="anonymous"></script>
<script src="https://staging.bitpay.com/bitpay.min.js"></script>
<script src="app.js"></script>
</body>
</html>