Skip to content

Commit 333904f

Browse files
authored
Merge pull request #49 from prasanna1432/master
created a new login page
2 parents 7cdf9ae + 884e0fd commit 333904f

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

Diff for: loginpage.html

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<style>
5+
body{
6+
background: url(https://i.pinimg.com/originals/fa/c5/10/fac510db7a07e258fa398b1d166b0599.png);
7+
margin:0;
8+
background-size: cover;
9+
background-repeat: no-repeat;}
10+
.inp{
11+
padding:10px;
12+
margin:10px;
13+
width:235px;
14+
border:5px solid #0303FE ;
15+
border-radius:8px;
16+
}
17+
.btn {
18+
padding:10px;
19+
margin:10px;
20+
width:235px;
21+
background-color:#19BB5B;
22+
border-radius: 8px;
23+
color:white;}
24+
25+
.cls{
26+
color:#4A235A;
27+
padding:10px;
28+
margin:70px;}
29+
div{
30+
text-align: center;
31+
background-color:#FEFE03;
32+
width: 300px;
33+
border: 10px solid #FE0F03 ;
34+
padding: 60px;
35+
margin:100px;
36+
margin-left: 450px;
37+
margin-top: 150px;
38+
}
39+
</style>
40+
<title>login</title>
41+
</head>
42+
<body>
43+
<div >
44+
<input style="width:200px"; class="inp"placeholder="Enter Email Id" />
45+
<br />
46+
<input style="width:200px"; class="inp"placeholder="Password" />
47+
<br />
48+
<button class="btn">Log In</button>
49+
<br />
50+
<a class="cls" href="#">forget password?</a>
51+
<a class="cls" href="#">or create account</a>
52+
</div>
53+
</body>
54+
</html>

0 commit comments

Comments
 (0)