-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (76 loc) · 3.45 KB
/
index.html
File metadata and controls
89 lines (76 loc) · 3.45 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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>Login</title>
<link href="css/index.css" rel="stylesheet">
<link href="css/header.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
</head>
<body>
<div class="header">
<img src="images/project_logo.png">
<a href="dashboard.html"><button>Goalify</button></a>
<a href="dashboard.html"><button>Dashboard</button></a>
<a href="planner.html"><button>Planner</button></a>
<!--<a href="#"><li>Settings</li></a>-->
<!--<a href="#"><li>Log In</li></a>-->
</div>
<div class="box-form">
<div class="left">
<div class="overlay">
<h1>Welcome <br> To The Home Of <br> Your Goals</h1>
<p>Being structured and planning in advance<br>
helps you focus and increases your performance.
</p>
</div>
</div>
<div class="right">
<h5>Login</h5>
<p>Don't have an account? <a href="signup.html">Create Your Account</a> here.</p>
<div class="inputs">
<input type="text" placeholder="email">
<br>
<input type="text" placeholder="password">
</div>
<br><br>
<div class="remember-forgot-pass">
<label>
<input type="checkbox" class="switch">
<span class="checkbox-text">Remember me</span>
</label>
<p><a href='#'>forgot password?</a></p>
</div>
<br>
<a href="dashboard.html"><button>Login</button></a>
<div class="vl">
<span class="vl-innertext">or</span>
</div>
<p style="text-align: center; margin-top: 30px;">Sign in using one of the socials:</p>
<div class="socials">
<a href="https://www.google.com/"><button><img src="./images/google_logo.png"></button></a>
<a href="https://www.facebook.com/"><button><img src="./images/facebook_logo.png"></button></a>
</div>
</div>
</div>
<div class="footer">
<div class="coloumns">
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" class="link_footer"><p>About us</p></a>
<a href="https://www.youtube.com/watch?v=TuQC5hhhqkY" class="link_footer"><p>Contact</p></a>
<a href="https://www.youtube.com/watch?v=0Kvw2BPKjz0" class="link_footer"><p>Terms of service</p></a>
<a href="https://www.youtube.com/watch?v=z_AgCzt9zcM" class="link_footer"><p>Privacy Policy</p></a>
</div>
<div class="social-media">
<a href="https://www.facebook.com/"><img src="./images/facebook_logo.png"></a>
<a href="https://www.instagram.com/"><img src="./images/inta_logo.png"></a>
<a href="https:/twitter.com/"><img src="./images/twitter_logo.png"></a>
<a href="https://www.linkedin.com/"><img src="./images/linkedin_logo.png"></a>
</div>
<div>
<p class="link_footer">Copyright © 2023. All rights reserved </p>
</div>
</div>
</body>
</html>