forked from AaronVincent6411/SmartC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Login.html
53 lines (53 loc) · 1.64 KB
/
Login.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
<!DOCTYPE html>
<html>
<head>
<title> Login Page </title>
</head>
<style>
Body {
background-color: hsl(221, 90%, 59%);
}
button {
background-color: rgb(222, 252, 222);
color: red;
border: none;
cursor: pointer;
}
form {
border: 0px ;
}
input[type=text], input[type=password] {
margin: 4px 0;
padding: 6px 10px;
border: 2px solid green;
}
button:hover {
opacity: 0.5;
}
.cancelbtn {
width: 30%;
padding: 5px 10px;
margin: 10px 5px;
}
.container {
width: 30%;
padding: 20px;
background-color: lightblue;
}
</style>
<body Background="https://drive.google.com/uc?export=view&id=1NU2c4Lu04GNJwbDEG6Sx2OKEal4iymAx">
<center> <font color="white"><h1> SmartC </h1> <br> <h2>Sign in</h2></font></center>
<form> <center>
<div class="container">
<label>Username: </label>
<input type="text" placeholder="Enter Username" name="username" required> <br>
<label>Password : </label>
<input type="password" placeholder="Enter Password" name="password" required> <br>
<button type="submit" size="10">Login</button> <br>
<input type="checkbox" checked="checked"> Remember Me
<button type="button" class="cancelbtn"> Cancel</button> <br>
Forgot <a href="#"> Password? </a>
</div> </center>
</form>
</body>
</html>