-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom404.php
More file actions
46 lines (40 loc) · 977 Bytes
/
custom404.php
File metadata and controls
46 lines (40 loc) · 977 Bytes
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
<style>
body{
background-color: #4D1F5B;
color:white;
}
img{
width:400px;
}
p{
font-size: 25px;
}
button{
height:50px;
border-radius: 10px;
background-color: white;
color: #8c8c8c;
font-size: 18px;
}
button:hover{
background-color: #EDE8EE;
cursor: pointer;
color:#4D1F5B;
}
</style>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 Not Found | Women in Computing</title>
</head>
<body>
<center>
<h2>404 Page Not Found</h2>
<img src="img/logo.png"/>
<p>The page you are looking for cannot be found. </p>
<form action="index.php">
<button type="submit">Click here to go back to the WiC homepage</button>
</form>
</center>
</body>