-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (67 loc) · 2.63 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>html-forms</title>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div class="signinContainer">
<div class="signinText">
<p>Already have an Intuit account?</p>
<a href="#">I forgot my User ID or Password</a>
</div>
<button>
<i class="fa fa-lock"></i>
Sign In
</button>
</div>
<div class="form-container">
<div class="header">
<div class="logo">
<a href="#"><img src="images/intuit-logo.png" alt="logo-intuit-black"></a>
</div>
<div class="navbar">
<img src="images/mint-logo.png" alt="mint-logo"> Mint
<img src="images/quickbooks-logo.png" alt="quickbooks-logo"> quickbooks
<img src="images/Turbo-Tax-Logo.png" alt="turbo-tax-logo"> turbotax
</div>
</div>
<form action="">
<div class="form-head"><h4>One Account.</h4><h4>Everything Intuit.</h4></div>
<div class="form-desc"><p>Create an account for all of Intuit's products including Mint. <a href="#"> Learn more</a></p></div>
<div class="form-body">
<label for="email">
Email address
<input type="email" name="email" id="email">
</label>
<label for="phone">
Phone (Recommended)
<input type="tel" name="phone" id="phone">
</label>
<label for="password">
Password
<input type="password" name="password" id="password">
</label>
<button type="submit" class="btn-default"><i class="fa fa-lock"></i> Create Account</button>
</div>
<div class="form-footer">
<p class="license">By clicking Create Account, you agree to our <a href="#"> License Agreement</a> and have read and acknowledge our <a href="#"> Privacy Statement</a>.</p>
<p class="recaptcha">Invisible reCAPTCHA by Google Privacy Policy and Terms of Use.</p>
</div>
</form>
</div>
<div class="footer">
<div class="link-container">
<a href="#">Legal</a>
<a href="#"> Privacy</a>
<a href="#">Security</a>
</div>
© 2019 Intuit, Inc. All rights reserved. Intuit, QuickBooks, QB, TurboTax, ProConnect and Mint are registered trademarks of Intuit Inc.
Terms and conditions, features, support, pricing, and service options subject to change without notice.
</div>
</body>
</html>