-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpay.html
83 lines (54 loc) · 2.42 KB
/
pay.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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
</style>
<link rel="stylesheet" href="pay.css">
</head>
<body>
<div class="row" id="wholepay">
<div class="column" id="colleft">
<div class="headspace">
<img src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FConnectHealth%20Logo.png?v=1613936625917">
<h2>Purchase ConnectHealth {advanced pro etc}</h2>
<p>
You won't be billed until your free trial ends.
</p>
</div>
</div>
<div class="column" id="rightcol">
<div class="payforms">
<div class="accordion-item">
<div class="accordion-head">
<b>Total due: $wrvw</b>
</div>
<div class="accordion-body">
<div class="accordion-content">
Yes, telehealth is a safe and effective way to expand health care. Everything is held to the same standards as in-person visits, but in a safer and more convient way for both patients and practices by reducing the risk of exposure to infections. Your files and data are also kept in private and nothing will be shared or accessed by someone outside your organization absent your permission. Contact us if you have questions about how we're accomodating your health and security concerns.
</div>
</div>
</div>
<label for="fname">Accepted Cards</label>
<div class="icon-container">
<i class="fa fa-cc-visa" style="color:navy;"></i>
<i class="fa fa-cc-amex" style="color:blue;"></i>
<i class="fa fa-cc-mastercard" style="color:red;"></i>
<i class="fa fa-cc-discover" style="color:orange;"></i>
</div>
<label for="cname">Name on Card</label>
<input type="text" id="cname" name="cardname" placeholder="John More Doe">
<label for="ccnum">Credit card number</label>
<input type="text" id="ccnum" name="cardnumber" placeholder="1111-2222-3333-4444">
<label for="expyear">Exp Year</label>
<input type="text" id="expyear" name="expyear" placeholder="2018">
<label for="cvv">CVV</label>
<input type="text" id="cvv" name="cvv" placeholder="352">
<div class="paybot">
<a class="test2-btn" href="video.html">Pay</a>
</div>
</div>
</div>
</div>
</body>
</html>