forked from seeditsolution/javaprogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Login page
93 lines (81 loc) · 2.2 KB
/
Login page
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
<html>
<head> <title> Login Form </title>
<style>
*{
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background: linear-gradient(115deg, #56d8e4 10%, #9f01ea 90%);
}
div{
border: 2px solid white;
width: 400px;
height: 400px;
padding: 10px;
margin-left: 500px;
margin-top: 100px;
background: white;
}
button{
height: 50px;
width: 300px;
background: linear-gradient(115deg, #56e4a2 10%, #ea0113 90%);
border: none;
color: #fff;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
}
img{
width: 380px;
height: 50px;
}
h3{
margin-left: 30px;
}
h3 input{
width: 300px;
height: 30px;
}
h5{
margin: 30px;
font-family: sans-serif;
font-size: 15px;
}
a{
font-family:sans-serif;
font-size: 15px;
}
input{
background: linear-gradient(115deg, #e49d56 10%, #fff 90%);
border: none;
box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
a{
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
</style>
</head>
<body>
<div><img src="stark.jpeg">
<h3>E-mail or Phone <br><input type="text">
<br><br>
Password <br><input type="text"><br>
</h3>
<h5>
<a href="#">Forgoten Password?</a><br><br>
<button>Login</button><br><br>
new user <a href="#">Registration</a>
</h5>
</div>
</body>
</html>