forked from sophiezychan/learningthrills.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (87 loc) · 1.95 KB
/
index.html
File metadata and controls
94 lines (87 loc) · 1.95 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
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>Login Form</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<img src = "LearningThrills Banner.png" width="960" height="270"></img>
<div class="login">
<form id="login" method="get" action="login.php">
<label><b>Username
</b>
</label>
<input type="text" name="Uname" id="Uname" placeholder="Username">
<br><br>
<label><b>Password
</b>
</label>
<input type="Password" name="Pass" id="Pass" placeholder="Password">
<br><br>
<input type="button" name="log" id="log" onclick="location.href='website.html';" value="Log In Here" />
<br><br>
<input type="checkbox" id="check">
<span>Remember me</span>
<br><br>
<a href="#">Forgot Password</a>
</form>
</div>
<style>
body
{
margin: 0;
padding: 100px;
background-color:#6FCEC4;
font-family: 'Helvetica';
}
.login{
width: 382px;
overflow: hidden;
margin: auto;
margin: 20 0 0 450px;
padding: 80px;
background: #4ea69d;
border-radius: 15px ;
}
h2{
text-align: center;
color: #FFFFF;
padding: 20px;
}
label{
color: #FFFFF;
font-size: 17px;
}
#Uname{
width: 360px;
height: 50px;
border: none;
border-radius: 3px;
padding-left: 8px;
}
#Pass{
width: 360px;
height: 50px;
border: none;
border-radius: 3px;
padding-left: 8px;
}
#log{
width: 370px;
height: 50px;
border: none;
border-radius: 17px;
padding-left: 7px;
color: #4ea69d;
font-size: 15px;
}
span{
color: white;
font-size: 17px;
}
a{
float: right;
}
</style>
</body>
</html>