-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 832 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<link rel="stylesheet" href="materialize.css">
<script> var clienttoken = '<%= clientoken %>';
var amount = '<%= amount %>';
var merchantid = '<%= merchantid %>';
var user = '<%= user %>';
var branchid = '<%= branch_id %>';
</script>
<h5 class="center-align">Paying to Restaurant <script>document.write(merchantid) + " " + document.write(merchantid)</script></h5>
<h2 class="center-align">$<script>document.write(amount)</script></h2>
<head>
<meta charset="utf-8">
<script src="https://js.braintreegateway.com/web/dropin/1.3.1/js/dropin.min.js"></script>
</head>
<body>
<div id="dropin-container"></div>
<button id="submit-button" class="waves-effect waves-light btn" style="width:100%;height:50px;">Confirm Payment</button>
<script src="client.js"></script>
</body>
</html>