forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
45 lines (44 loc) · 1.53 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
<!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>
<div id="container"></div>
<div id="outerbox">
<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 class="image-container">
<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 class="input-group">
<input id="phone" class="mobile" type="tel" placeholder="Enter Mobile Number"/>
</div>
<div class="terms">
<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 class="button-group">
<button class="continue" onclick="Signup()">Request OTP</button>
</div>
<div class="button-group">
<button onclick="window.location.href='signin.html'">Existing User? Sign-In</button>
</div>
</div>
</div>
</div>
</body>
</html>
<script>
$(function(){
$("#container").load("./Navabar.html");
});
</script>
<script src="./signup.js"></script>