-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo.html
72 lines (68 loc) · 3.78 KB
/
demo.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
<!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>Quora Login Page</title>
<link rel = "icon" href = "https://qph.cf2.quoracdn.net/main-qimg-4d340b8b704ccfc33ac16dd261b6c121-lq" type = "image/x-icon">
<link rel="stylesheet" href="./demo.css">
</head>
<body class="background">
<div class="container">
<div>
<h1>Quora</h1>
<br>
<p>A place to share knowledge and better understand the world</p>
</div>
<div class="Box-Display">
<div class="table1">
<div class="Table1Display">
<a class="ab" href="https://accounts.google.com/o/oauth2/auth/oauthchooseaccount?redirect_uri=storagerelay%3A%2F%2Fhttps%2Fwww.quora.com%3Fid%3Dauth860133&response_type=permission%20id_token&scope=email%20profile%20openid&openid.realm&include_granted_scopes=true&client_id=917071888555.apps.googleusercontent.com&ss_domain=https%3A%2F%2Fquora.com&prompt&fetch_basic_profile=true&gsiwebsdk=2&flowName=GeneralOAuthFlow">Continue
with Google</a>
<a class="abcd" href="https://www.facebook.com/v13.0/dialog/oauth?client_id=136609459636&redirect_uri=https%3A%2F%2Fwww.quora.com%2Ffacebook%2Fcallback&response_type=code&scope=email&state=eyJwZXJtcyI6ICJlbWFpbCIsICJjc3JmIjogImViMDViZGM3ZTEyZTY2MzljYTQxNzRhMDM1ZDU3NGJlIiwgInBsYXRmb3JtIjogImRlc2t0b3AiLCAidGFyZ2V0IjogInNpZ251cCJ9">Continue
with Facebook</a>
<a class="abc" href="./signUp.html">Sign up with email</a>
</div>
<hr>
<p id="termsCond">By continuing you indicate that you agree to Quora’s <a href="https://www.quora.com/about/tos">Terms of Service</a> and <a
href="https://www.quora.com/about/privacy">Privacy Policy</a>.</p>
</div>
<hr>
<div id="loginForm"class="table2">
<h3>Login</h3>
<hr>
<label for="">Email</label><br>
<input type="email" placeholder="Your email">
<br><br>
<label for="">Password</label><br>
<input type="password" placeholder="Your password">
<br>
<br>
<div class="fpl">
<a href="./forgetPass.html">Forgot password?</a>
<button onclick="login()">Login</button>
</div>
</div>
</div>
<hr>
<div class="language">
<a href="https://hi.quora.com/">हिन्दी </a>
<a class="sign" href="">> </a>
</div>
<br>
<footer>
<a href="https://www.quora.com/about">About</a>
<li><a href="https://www.quora.com/careers">Careers</a></li>
<li><a href="https://www.quora.com/about/privacy">Privacy</a></li>
<li><a href="https://help.quora.com/hc/en-us/requests/new">Terms</a></li>
<li><a href="https://www.quora.com/about/languages">Contact</a></li>
<li><a href="https://www.quora.com/about/languages">Languages</a></li>
<li> <a href="https://www.quora.com/about/your_ad_choices">Your Ad Choices</a></li>
<li><a href="https://www.quora.com/press">Press</a></li>
<li> <span>© Quora, Inc. 2022</span></li>
</footer>
</div>
</body>
<script src="./demo.js"></script>
</html>