-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignuppage.html
52 lines (47 loc) · 2.37 KB
/
signuppage.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
<!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">
<title>Sign up page</title>
<link rel="stylesheet" href="signuppage.css">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div id="main">
<div id="img">
<img src="images/signupimg.jpeg" alt="">
</div>
<div id="form">
<div>
<a href="index.html"><img src="https://mma.prnewswire.com/media/966476/Chargebee_logotype_Logo.jpg?p=publish" alt="error"></a>
<a href="loginpage.html"><p>Login -></p></a>
</div>
<div id="signupform">
<div>
<p>Create Your Sandbox Account</p>
<p id="email">Work email </p> <br>
<input id="iemail" value="" type="email" placeholder="(eg)[email protected]"><br>
<p id="num">Phone number</p> <br>
<input id="monum" value="" type="number" placeholder="889353453"><br>
<input type="checkbox" id="abc">
<label for="abc" id="abcd">I want to be notified about the awesome happenings* at Chargebee</label><br>
<button id="btn">complete signup</button>
<p class="ab">By clicking on Complete Signup, you agree to our Terms and you acknowledge having read our Privacy Notice</p>
<p class="ab">*This includes periodic newsletters, emails about usage tips, billing practices, and other communications. You can opt out anytime within the app.</p>
<span> Your data hosting is</span>
<select name="region" id="sel">
<option value="US region">US region</option>
<option value="EU region">EU region</option>
<option value="AU region">AU region</option>
</select>
</div>
</div>
<img id="sponser" src="https://webstatic.chargebee.com/assets/web/529/images/signup/customers/chargebee-customers.svg" alt="">
</div>
</div>
</body>
</html>
<script src="signuppage.js">
</script>