-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLabErrorPage.html
52 lines (47 loc) · 1.11 KB
/
LabErrorPage.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
<!DOCTYPE html>
<html>
<head>
<title>Error</title>
</head>
<style type="text/css">
h1 {
text-align: center;
padding: 20px;
background: #007991;
background: #D31027;
background: -webkit-linear-gradient(to right, #EA384D, #D31027);
background: linear-gradient(to right, #EA384D, #D31027);
color: black;
letter-spacing: 0.2rem;
margin-bottom: 90px;
}
.laberrorHome {
width: 412px;
overflow: hidden;
margin: auto;
margin: 20 0 0 450px;
padding: 80px;
background: #9fa2f5;
border-radius: 15px;
}
#lab_error_home {
width: 400px;
height: 50px;
border: none;
border-radius: 17px;
padding-left: 7px;
color: blue;
}
span {
font-size: 17px;
}
</style>
<body>
<h1>Error</h1>
<div class="laberrorHome">
<h1>ID / Password Not Found</h1>
<form action="/" method="get">
<button type="laberror" id="lab_error_home">Go Back to Welcome Page</button><br><br>
</form>
</div>
</html>