forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
56 lines (50 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="stylesheet" href="./signup.css">
</head>
<body style="min-width: 100vh;">
<div id="container" style="display: flex; justify-content: center; "></div>
<div id="outerbox" style="display: flex; min-height: 90vh;">
<div id="innerbox">
<div class="leftinnerbox">
<p class="para1">Looks like you're new here!
</p>
<p class="para2"> Sign up with your mobile number to get started</p>
<div style="display: flex;flex-direction: column;align-items: center;justify-content: center;margin-top: 30px;width: 75%;">
<img src="https://static-assets-web.flixcart.com/fk-p-linchpin-web/fk-cp-zion/img/login_img_c4a81e.png" alt="hero_signup">
</div>
</div>
<div class="rightinnerbox">
<div style="display: flex;justify-content: center;margin-top: 20px;">
<input id="phone" class="mobile" type="number" placeholder="Enter Mobile Number"/>
</div>
<div style="margin-top: 20px;">
<p class="textm">By continuing, you agree to Flipkart's
<span style="color: blue;"> Terms of Use</span>
and <span style="color: blue;">Privacy Policy.</span></p>
</div>
<div style="margin-top: 10px;display: flex;justify-content: center;">
<button class="continue " style="border: none;background-color: #FB641B;color: white;font-size: 20px;width: 90%;padding: 10px;border-radius: 5px; margin-top: 20px;"
onclick="Signup()"
>Request OTP</button>
</div>
<div style="margin-top: 10px;display: flex;justify-content: center;">
<button
onclick="window.location.href='signin.html'" style="border: none;background-color: whitesmoke;color: #2874F0;;font-size: 20px;width: 90%;padding: 9px;border-radius: 5px">Existing User? Sign-In</button>
</div>
</div>
</div>
</div>
</body>
</html>
<script>
$(function(){
$("#container").load("./Navabar.html");
});
</script>
<script src="./signup.js"></script>