-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (71 loc) · 1.94 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
70
71
72
73
74
75
76
77
78
<!doctype html>
<html>
<head>
<title>KeepUp</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="index.css">
</head>
<style>
html, body{
color: #564BD1;
margin:0;
padding:0;
font-family: 'Rubik', sans-serif;
background-color:#ffffff;
}
#logo{
font-size: 48px;
color:#FDEBAB;
-webkit-text-stroke: 1px #564BD1;
}
h1{
text-align: center;
}
p{
text-align: right;
}
.container{
display:flex;
flex-direction:column;
max-width:320px;
margin: 30px auto;
}
img {
width: 150px;
margin: 0 auto;
}
input {
color: #B6B4D4;
background-color: #f1f6ff;
border: 0;
padding: 15px;
border-radius: 8px;
font-size: 20px;
text-align: center;
font-family: 'Rubik', sans-serif;
margin: 10px 0;
}
button {
color: #564BD1;
background-color: #FDEBAB;
border: 0;
padding: 15px;
border-radius: 8px;
font-size: 20px;
text-align: center;
}
</style>
<body>
<div class="container">
<h1 id="logo">KeepUp</h1>
<h1>Log in</h1>
<h3>Email</h3>
<input type="text" id="input-field" placeholder="Email">
<h3>Password</h3>
<input type="text" id="input-field" placeholder="Password">
<p><a href="forgotpassword.html">Forgot password?</a></p>
<button id="add-button"><a href="homepage.html">Log In</a></button>
<p>Don't have an account? <a href="signup.html">Sign up</a></p>
</div>
</body>
</html>