-
Notifications
You must be signed in to change notification settings - Fork 0
/
loginpage.html
121 lines (96 loc) · 2.19 KB
/
loginpage.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html>
<head>
<script>
function mycancel(){
window.location.href = "loginpage.html";
}
function myloginbutton(){
window.location.href = "main.html";
}
</script>
<style>
body{
background-color: #17141d;
height:1000px;
width: 1400px;
background-attachment:fixed;
}
/* #lauda img{
height:250px;
width:300px;
align:"center";
}
#lauda img:hover{
opacity:0.5;
} */
form { border:6px solid #f1f1f1; border-radius: 30px; height:500px; width:400px; PADDING:10px;}
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 4px solid #ccc;
border-radius: 20px;
box-sizing: border-box;
}
button {
background-color: #04AA6D;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 20px;
cursor: pointer;
width: 100%;
}
button:hover {
opacity: 0.8;
}
.cancelbtn {
width: auto;
padding: 10px 18px;
background-color: #f44336;
}
.imgform {
text-align: center;
margin: 24px 0 12px 0;
}
img.profile {
width: 40%;
border: 3px solid white;
border-radius: 50%;
}
.cancel {
padding: 16px;
}
a:hover{
opacity: 0.5;
}
</style>
</head>
<body>
<!-- <div id="lauda" align="center">
<img src="LOGO.png" >
</div> -->
<div id="d3" align="center">
<form action="#" method="post">
<div class="imgform">
<img src="avatar2.png" class="profile">
</div>
<div class="username">
<label style="text-align:left"><B>USERNAME:</B><br><label>
<input type="text" placeholder="Enter Username" required name="USERNAME" AUTOFOCUS="USERNAME">
<label><B>PASSWORD:</B><input type="password" placeholder="Enter Password" required name="PASSWORD"></label>
<button type="submit" onclick="myloginbutton()">Login</button>
</div>
<div class="cancel" >
<button type="button" class="cancelbtn" onclick="mycancel()">Cancel</button>
</div>
<div style="color: white;">
Don't have an account<a href="signinpage.html"><h2 style="color:#04AA6D">SignIn</h2></a>
</div>
</form>
</div>
</body>
</html>