-
Notifications
You must be signed in to change notification settings - Fork 2
/
error4.php
39 lines (39 loc) · 1.01 KB
/
error4.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error - Doctor Not Found</title>
<style>
body {
background: -webkit-linear-gradient(left, #3931af, #00c6ff);
color: white;
padding-top: 100px;
text-align: center;
font-family: Arial, sans-serif;
}
h3 {
font-size: 24px;
}
.btn {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
font-size: 16px;
text-decoration: none;
background-color: transparent;
border: 2px solid white;
color: white;
cursor: pointer;
}
.btn:hover {
background-color: white;
color: #3931af;
}
</style>
</head>
<body>
<h3>Invalid Username or password</h3>
<a href="index.php" class="btn">Back</a>
</body>
</html>