-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
45 lines (45 loc) · 805 Bytes
/
error.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
<!DOCTYPE html>
<html>
<head>
<link rel='shortcut icon' type='image/x-icon' href='img/favicon.jpg' />
<title>Error</title>
</head>
<style type="text/css">
.img{
width: 100%;
margin-left: 38%;
margin-top: 5%;
}
.warning{
width: 100%;
height: 100px;
background-color: red;
}
.warning h1{
text-align: center;
padding-top: 30px;
color:white;
}
a{
text-decoration: none;
}
input[type="button"]{
margin-left: 44%;
margin-top: 20px;
width: 200px;
height: 50px;
background-color: white;
border:3px solid red;
font-size: 18px;
}
</style>
<body>
<div class="img">
<img src="img/stop.png" width="400">
</div>
<div class="warning">
<h1>PASSWORD/USERNAME INVALID</h1>
</div>
<a href="login.html"><input type="button" value="Back To Login Page"></a>
</body>
</html>