-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex..html
More file actions
81 lines (73 loc) · 2.04 KB
/
index..html
File metadata and controls
81 lines (73 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body {
background-color: whitesmoke;
justify-content: center;
align-items: center;
margin:12px;
padding: 0px;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
justify-items: center;
flex-direction: row;
}
div {
background: white;
text-align:center;
width: 300px;
height: 400px;
padding: 12px;
outline-color: black;
font:italic;
font-size: large;
font-weight: lighter;
box-shadow: 0 25px 25px 10px rgba(0,1, 0, 0.7);
border-radius: 12px ;
}
a{
text-decoration: none;
}
button{
color:cornsilk;
background:black;
cursor: pointer;
border:white;
}
button:hover{
background: violet;
color: black;
}
</style>
</head>
<body>
<div>
<form>
<h3><em>Student Login - Portal</em></h3>
<label for="username"></label>
Username: <input type="text" name="username" placeholder="Full Name">
<br>
<br>
<label for="indexnumber"></label>
Index No: <input type="text" name="indexnumber" placeholder="Index Number">
<br>
<br>
<label for="password"></label>
Password: <input type="password" name="password" placeholder="Password">
<br>
<br>
<input type="submit" name="btn_login" id="btn_login" value="Login">
<a href="#" ><h4>I Don't Have An Accout! Sign In Now</h4></a>
<a href="#" ><h6>I Lost My Identity Details</h6></a>
<a href="#"><button>Buy forms!</button></a>
</form>
</div>
</body>
</html>