forked from sanalog/Sanalog-1.5.2-Web
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path400.aspx
More file actions
95 lines (87 loc) · 2.5 KB
/
400.aspx
File metadata and controls
95 lines (87 loc) · 2.5 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<%@ page language="C#" autoeventwireup="true" codefile="400.aspx.cs" inherits="_404" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>400</title>
<script>
function goBack() {
window.history.back();
}
</script>
<style>
body {
color: #ecf0f1;
margin: 0;
font: normal 14px/20px Arial, Helvetica, sans-serif;
height: 100%;
background-color: #BDBDBD;
}
.container {
height: auto;
min-height: 100%;
}
.box {
text-align: center;
width: 800px;
margin-left: -400px;
position: absolute;
top: 30%;
left: 50%;
}
h1 {
margin: 0;
color: #E73C56;
font-size: 150px;
line-height: 150px;
font-weight: bold;
}
h2 {
margin-top: 20px;
margin-bottom: 20px;
font-size: 30px;
}
.text {
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 4px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
color: #9C9C9C;
background: #FFF;
border: none !important;
border-radius: 4px;
-webkit-transition: border .25s linear, color .25s linear, background-color .25s linear;
transition: border .25s linear, color .25s linear, background-color .25s linear;
-webkit-font-smoothing: subpixel-antialiased;
-webkit-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div class="container">
<div class="box">
<h1>400</h1>
<h2>Geçersiz İstek!
</h2>
<p class="text">Bad Rrequest</p>
<p><a onclick="goBack()" class="btn">Go Back</a></p>
</div>
</div>
</form>
</body>
</html>