-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (100 loc) · 3.34 KB
/
index.html
File metadata and controls
101 lines (100 loc) · 3.34 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
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<title>Online code editor</title>
<style>
body{
font-family: "Lucida Console", "Courier New", monospace;
}
#title{
margin: auto;
text-align: center;
padding: 20px;
padding-bottom: 20px;
background-color: #04AA6D;
color: white;
}
.box{
height: 500px;
width: 500px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 15px;
margin: auto;
margin-top: 20px;
padding: 20px;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#name{
height: 30px;
width: 300px;
margin: 10px;
padding: 10px;
font-size: large;
}
#loti{
margin-bottom: 50px;
}
#loginbu{
margin: 20px;
font-size: large;
padding: 8px 50px;
background-color: #04AA6D;
color: aliceblue;
cursor: pointer;
font-family: "Lucida Console", "Courier New", monospace;
}
#loginbu:hover{
background-color: black;
}
#temp{
font-family: "Lucida Console", "Courier New", monospace;
background-color: pink;
}
.con1{
display: flex;
width: 100%;
justify-content: center;
align-items: center;
}
#fp{
width: 50%;
margin-left: 20px;
text-align: end;
}
#lab{
display: flex;
flex-direction: row;
justify-content: center;
}
</style>
</head>
<body>
<h1 id="title">Online Code Editor</h1>
<div class="box">
<form action="main.html" class="container">
<h1 id="loti">Login</h1>
<label for="email">Email<br></label>
<input type="email" name="myemail" id="name">
<br>
<label for="password">Password<br></label>
<input type="password" name="mypass" id="name">
<input onclick="location.href='main.html';"type="button" value="Login" name="lobutton" id="loginbu" >
<div class="con1">
<div id="lab">
<input type="checkbox" name="remember-me" id="rem">
<label for="chk" style='font-family: "Lucida Console", "Courier New", monospace;'>Remember me</label>
</div>
<a href="" id="fp">Forgot Password?</a>
</div>
<br><br>
<div id="con2">
<h4>Are you new user? <a href="register.html">Register</a></h4>
</div>
</form>
</div>
</body>
</html>