-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpayment.html
122 lines (111 loc) · 5.23 KB
/
payment.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="themes/assets/images/logo.png" type="image/png">
<link href="themes/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="themes/assets/css/carousel.css" rel="stylesheet">
<title>Payment</title>
<link rel="stylesheet" href="themes/assets/css/form.css">
</head>
<body >
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">The Turing's Club</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li ><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li ><a href="contactus.html">Contact us</a></li>
<li><a href="OurMembers.html">Our Team</a></li>
<li><a href="Loginform.html">Login/SignUp</a></li>
<li><a class="active" href="payment.html">Pay Online</a></li>
</div>
</div>
</div>
</div>
</div>
<form action="server location">
<h1> <b> Payment Form </b> </h1>
<h2>Contact Information</h2>
<p> Name:
<input type="text" name="name" required placeholder="Vikas Kumar"/></p>
<p><fieldset>
<legend>Gender:</legend>
Male<input type="radio" name="gender" id="gender" />
Female<input type="radio" name="gender" id="gender"/>
Others<input type="radio" name="gender" id="gender"/>
</fieldset></p>
<p>Adress:<br>
<textarea name="Adress" id="Adress" cols="30" rows="10" placeholder="Enter your Address"></textarea></p>
<p>Email:
<input type="email" name="Email" id="Email" placeholder="[email protected]" /></p>
<p>Pincode:
<input type="number" name="Pincode" id="Pincode" placeholder="112233"></p>
<hr>
<h2>Payment Information</h2>
<p>Card Type:
<select name="Card Type" id="">
<option value="">--Select a card type--</option>
<option value="Visa">Visa</option>
<option value="Rupay">Rupay</option>
<option value="MasterCard">MasterCard</option>
<option value="BOI">BOI</option>
</select>
</p>
<p>Card Number: <input type="number" name="Card Number" id="Card Number" placeholder="1111-1111-1111-1111"></p>
<p>Expiration Date: <input type="date" name="Expiration Date" id="Expiration Date"></p>
<p>CVV:
<input type="password" name="CVV" id="CVV"></p>
<input type="submit" value="Pay Now">
</form>
<div class="introSection">
<div class="container">
<div class="row">
<div class="col-lg-5">
<h3>Welcome to Forrevy</h3>
<p>
Forrevy is a digital platform for local service businesses in India, matching 20+ consumers with 500 service professionals across 200 categories in about 40 cities.
We focuses on expert services clustered around Home, Life and Self and where the user need is customized.
Using technology and domain intelligence, the platform seeks to understand the user need in detail and matches it to verified service professionals who are profiled.
The service is free to use for consumers and service professionals pay the platform for performance in the form of verified, matched service requests.
</p>
</div>
<div class="col-lg-4">
<h3></h3>
<p>
</p>
</div>
<div class="col-lg-3">
<h3>Our Presence</h3>
<p>
New Delhi Mumbai Bangalore Chennai Kolkata Patna Ahmedabad Indore Lucknow Ranchi Pune Bhopal Bhubaneshwar Jaipur Dehradun Goa Raipur
</p>
</div>
</div>
</div>
</div>
<!-- /END THE FEATURETTES -->
<!-- FOOTER -->
<footer>
<div class="container">
<p class="pull-right"><a href="#">Back to top</a></p>
<p>© 2021 The Turing's Club made for Hacknitp 3.0 under the theme employbility</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="themes/dist/js/bootstrap.min.js"></script>
<script src="themes/assets/js/holder.js"></script>
</body>
</html>