-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
187 lines (156 loc) · 8.22 KB
/
Copy pathindex.html
File metadata and controls
187 lines (156 loc) · 8.22 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<script src="https://kit.fontawesome.com/be3b38df61.js" crossorigin="anonymous"></script>
<title>Application Form</title>
</head>
<body>
<div class="container">
<div class="first-section-div">
<section class="first-section">
<div class="text">
<h2>More Than a POS Terminal</h2>
<p>Introducing the one device for all your <br> payment needs and more</p>
</div>
<div class="img">
<img id="image1" src="/image/POS.webp" alt="POS">
</div>
<div class="footer">
<h6 id="footer-header">AVAILABLE PAYMENT METHODS</h6>
<div class="icons">
<div id="icon-div">
<img id="icon" src="/image/QR.jpg" alt="QR">
<h6>QR</h6>
</div>
<div id="icon-div">
<img id="icon" src="/image/ussd.png" alt="CARDS">
<h6>CARDS</h6>
</div>
<div id="icon-div">
<img id="icon" src="/image/ussd.png" alt="USSD">
<h6>USSD</h6>
</div>
<div id="icon-div">
<img id="icon" src="/image/Transfer.jpg" alt="TRANSFER">
<h6>TRANSFER</h6>
</div>
<div id="icon-div">
<img id="icon" src="/image/paycode.jpg" alt="PAYCODE">
<h6>PAYCODE</h6>
</div>
</div>
</div>
</section>
</div>
<div class="second-section-div">
<section class="second-section">
<div class="text">
<h2>Your Smart POS is just a Few Clicks Away</h2>
<p>Let us help you kick-start the journey that's beyond collecting payments,
please share your details here.
</p>
</div>
<div class="stored-success">
Your details have been saved.
</div>
<form id="form">
<section class="names">
<div class="formInput">
<label for="first-name">First Name</label> <br>
<input type="text" name="firstName" id="first-name" placeholder="First Name" class="error"
onblur="firstNameValueCheck()" onkeyup="firstNameValueCheck()"
onchange="firstNameValueCheck()">
<i class="fa-solid fa-circle-check"></i>
<i class="fa-solid fa-circle-exclamation"></i>
<small></small>
</div>
<div class="formInput">
<label for="last-name">Last Name</label> <br>
<input type="text" name="lastName" id="last-name" placeholder="Last Name"
onblur="lastNameValueCheck()" onkeyup="lastNameValueCheck()"
onchange="lastNameValueCheck()">
<i class="fa-solid fa-circle-check"></i>
<i class="fa-solid fa-circle-exclamation"></i>
<small></small>
</div>
</section>
<div class="formInput">
<label for="email">Email Address</label> <br>
<input type="email" name="email" id="email" placeholder="Your Email Address"
onblur="emailChangedValue()" onkeyup="emailChangedValue()" onchange="emailChangedValue()">
<i class="fa-solid fa-circle-check"></i>
<i class="fa-solid fa-circle-exclamation"></i>
<small></small>
</div>
<div class="formInput">
<label for="number">Phone Number</label> <br>
<input type="tel" name="number" id="number" placeholder="Phone Number"
onblur="numberChangedValue()" onkeyup="numberChangedValue()" onchange="numberChangedValue()"
title="Format: xxxx-xxx-xxxx">
<i class="fa-solid fa-circle-check"></i>
<i class="fa-solid fa-circle-exclamation"></i>
<small></small>
</div>
<div class="formInput">
<label for="businessLocation"> Where Do You Sell? </label> <br>
<select name="businessLocation" id="businessLocation" onblur="businessLocationValueCheck()"
onchange="businessLocationValueCheck()">
<option value="" disabled selected>-select-</option>
<option value="Lagos">Lagos</option>
<option value="Oyo">Oyo</option>
<option value="Osun">Osun</option>
</select>
<small></small>
</div>
<div class="formInput">
<label for="businessType"> Business Type </label> <br>
<select name="businessType" id="businessType" onblur="businessTypeValueCheck()"
onchange="businessTypeValueCheck()">
<option value="" disabled selected> -select-</option>
<option value="Trading">Trading</option>
<option value="Transportation">Transportation</option>
</select>
<small></small>
</div>
<div class="formInput">
<label for="monthly-sales"> Average Monthly Sales/Turnover </label> <br>
<select name="monthly-sales" id="monthly-sales" onblur="monthlySalesValueCheck()"
onchange="monthlySalesValueCheck()">
<option value="" disabled selected>-select-</option>
<option value="50%">50%</option>
<option value="100%">100%</option>
</select>
<small></small>
</div>
<div class="radio">
<label>Will you be interested in integrating a Business Management Software?</label>
<br>
<input type="radio" id="yes" name="interest" value="Yes"
onchange="validateRadioButtonsOnchange()"><label for="yes">Yes</label>
<input type="radio" id="no" name="interest" value="No"
onchange="validateRadioButtonsOnchange()"><label for="no"> No</label>
<br>
<small></small>
</div>
<div class="agree">
<input type="checkbox" name="checkbox" id="checkbox" value="Yes"
onchange="validateCheckboxOnchange()">
<label for="checkbox"> I <strong>Agree</strong> to Quickteller Business' <span>Privacy
Policy</span></label>
<small></small>
</div>
<br>
<!-- <marquee direction="right">You</marquee> -->
<!-- <p contenteditable="true">I am here</p> -->
<button type="submit" id="submit">Submit</button>
</form>
</section>
</div>
</div>
<script src="script.js"></script>
</body>
</html>