-
Notifications
You must be signed in to change notification settings - Fork 4
/
signup.html
49 lines (49 loc) · 1.85 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
<!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>Sign Up</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="header">
<div>
<a href="">
<img src="https://images.livemint.com/sso/newLogos/prod/ht_logo.svg?v2" alt="">
</a>
</div>
</div>
<div class="title">Login or Register</div>
<div class="container">
<div>
<a class="icgl" href="">Sign in with Google</a>
<a class="icfb" href="signupwithFb.html">Sign in with Facebook</a>
<a class="icap" href="">Sign in with Apple</a>
<a class="ictc" href="">Sign in with Truecaller</a>
</div>
<div class="or"><span>OR</span></div>
<div class="formHolder">
<div class="inputSec">
<div class="label">Email or Mobile Number<span class="required">*</span></div>
<div class="inputHolder">
<input type="text" value="" required="">
<div>
<div type="tel"></div>
</div>
</div>
</div>
<div class="btnHolder">
<input type="button" value="Continue" class="btn" disabled>
</div>
</div>
<div class="footer">
<p style="margin-bottom: 5px;" class="fs14">Powered by</p>
<img style="margin-bottom: 5px;" src="https://images.livemint.com/img/static/ht-digital-logo.svg" alt="">
<p style="margin-bottom: 5px;">One network. One account</p>
<img src="https://images.livemint.com/dev/LHNewFooterLogoDesk.svg" width="292">
</div>
</div>
</body>
</html>