This repository was archived by the owner on Jul 16, 2021. It is now read-only.
forked from TofunmiKupoluyi/checkoutButtonUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (66 loc) · 3.07 KB
/
index.html
File metadata and controls
71 lines (66 loc) · 3.07 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
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Your page title here :)</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/flutterwave.css">
</head>
<body>
<flutterwave>
<div class='overlay'>
<div id="primaryContainer">
<form>
<div id="topRow">
<img src="images/marketplace.png" style="position:absolute; top:-30px; left:38%; border-radius:100%; width:60px; height:60px;"></img>
<img src="images/marketplaceCover.png" style="position:absolute; top:-34px; left:36.3%; border-radius:100%; width:70px; height:70px;"></img>
<br>
<center>
<h6 style="font-weight:bold; margin-bottom: 0px">Sample Title</h6>
<div style="margin-bottom: 20px">Pay for one year subscription</div>
</center>
</div>
<div id="bottomRow">
<br>
<input type="text" id="email" placeholder="Email" class="u-full-width">
<input type="text" id="card" onkeyup="" placeholder="Card Number" class="u-full-width" maxlength="19">
<div class="row">
<div class="six columns">
<input id="expiry" type="text" placeholder="MM / YY" class="u-full-width" maxlength="7">
</div>
<div class="six columns">
<input id="cvv" type="text" placeholder="CVV" class="u-full-width" maxlength="3">
</div>
</div>
<div id="checkboxDiv">
<label style="vertical-align:middle; line-height:30px; color:#737373;">
<input id="remembered" type="checkbox">
<span id="rememberText" class="label-body">Remember me</span>
</label>
</div>
<br>
<div>
<input id="submit" type="submit" class="u-full-width button-primary" value="Pay $100"></input>
</div>
<br>
</div>
</form>
</div>
</div>
</flutterwave>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="jquery/jquery-3.1.0.min.js"></script>
<script src="js/flutterwave.js"></script>
</body>
</html>