-
Notifications
You must be signed in to change notification settings - Fork 2
/
login.html
98 lines (65 loc) · 2.98 KB
/
login.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
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;500&family=Poppins:wght@300&display=swap" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<script src="https://kit.fontawesome.com/0e3d6c2c8d.js" crossorigin="anonymous"></script>
<title>Self Drive Car Rentals | Rent a Car | Car Hire @Zoomcar</title>
<link rel="stylesheet" href="./css/login.css">
</head>
<body>
<div id="registerBox">
<h3>New here? Welcome!</h3>
<h4 id="dynamicData"></h4>
<button class="continue_btn" id="registerButton">REGISTER</button>
</div>
<div id="container">
<div id="topDiv"></div>
<div> <img class="zoom" src="https://www.zoomcar.com/build/fb65fcc43b8bededb813e093ea2d47d3.svg" />
</div>
<div class="login">
<h3>Enter details to login/sign-up</h2>
<br>
<div id="mobile_number">
<select class="mobile_details">
<option>+91</option>
</select>
<span class="stick">|</span>
<input class="num" type="number" placeholder="Enter mobile number"/>
</div>
<hr>
<p class="email_green">Continue with Email ID</p>
<HR>
<div id="social_media">
<p class="green_social">Continue via Social </p>
<img class="imgfb" src="https://www.zoomcar.com/build/62ba375ec1a9fbcbee9e9099181c8d38.svg"/>
<img class="imgfb" src="https://www.zoomcar.com/build/279de03b0c8ecdb4db56a79da6e775e6.svg"/>
</div>
</div>
</div>
<div id="continue_mobile_container">
<div class="left_arrow"><img src="https://cdn-icons-png.flaticon.com/512/109/109618.png" width="18px"/></div>
<h3 id="phoneNumberLabel">
Enter Mobile Number
</h3>
<br>
<div id="enter_number">
<select class="mobile">
<option>+91</option>
<option>+63</option>
<option>+84</option>
<option>+62</option>
</select>
<input class="mobile_number" id="mobileNumber" type="number" placeholder="Mobile Number"/>
<span id="spanWarning">Enter a valid phone number</span>
</div>
<center><button id="continue_btn">CONTINUE</button></center>
</div>
</body>
</html>
<script src="./js/login.js"></script>