-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
66 lines (61 loc) · 2.94 KB
/
signup.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
<!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="./css/signup.css">
<title>Signup</title>
</head>
<body>
<div id="maindiv">
<div id="card1">
<div id="logos">
<img src="https://www.bitrix24.net/bitrix/templates/new/images/bitrix24-logo-en.svg" alt="">
</div>
<a href="index.html"><-back to site</a>
<div id="yourcompany">Your Company. </div>
<div id="united">United</div>
<span id="sp1">Free.Unlimited.Online</span>
<div id="lang">
<select name="" id="optin">
<option value="">English</option>
<option value="">Hindi</option>
<option value="">French</option>
<option value="">Chinese</option>
<option value="">Russian</option>
</select>
</div>
</div>
<div id="card2">
<div id="titl">
<span>Bitrix24 Registration</span>
</div>
<span>Use your social account to register</span>
<div id="logins">
<img src="https://i.postimg.cc/fyZ1yy8m/Capture-login-options.png" alt="">
</div>
<input type="email" placeholder="Enter you Email" id="emailreg">
<input type="password" placeholder="Enter you Password" id="pwdreg">
<input type="number" placeholder="Enter you Mobile" id="mobreg">
<span id="span1">By registering you confirm that you accept the <a href="">Terms of Service and the Privacy Policy.</a></span>
<div id="checkboxes">
<input type="checkbox" name="" id="check1">
<label for="">I want to receive product updates info and special offers</label>
<input type="checkbox" name="" id="check2">
<label for="">I want to receive training materials</label>
</div>
<div id="btndiv">
<button id="registr">REGISTER FOR FREE</button>
<button id="logbtn">LOGIN</button>
<button id="coupon">I HAVE A COUPON</button>
</div>
<div id="lastinfo">
<span>This site is protected by reCAPTCHA and the Google <a href="https://www.bitrix24.in/terms/?_gl=1*1k6l7ys*_ga*MTMyMTMwNDgxNy4xNjU4MjE1MzEz*_ga_YLDC55MYKM*MTY1ODYzNTc2Ni4xOS4wLjE2NTg2MzU3NjYuMA..&_ga=2.27335546.797843411.1658635739-1321304817.1658215313&_gac=1.55040089.1658635801.Cj0KCQjwz96WBhC8ARIsAATR2505Mu9SWkASyisHR0E9Rh7UVtJXbLKC2qG4Xd2sA7nFWUuIBc_zcisaAvh5EALw_wcB">Privacy Policy and Terms of Service</a> apply</span>
</div>
<a href="">NEED HELP?</a>
</div>
</div>
</body>
</html>
<script src="./script/signup.js"></script>