-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy patherrorHead.html
More file actions
48 lines (40 loc) · 1.78 KB
/
errorHead.html
File metadata and controls
48 lines (40 loc) · 1.78 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
<!DOCTYPE html>
<!--
A HACKED WAY OF DISPLAYING ERROR MESSAGES. NOT PROUD OF IT, BUT IT WORKS.
-->
<html>
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Skeleton: Responsive CSS Boilerplate</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href='//fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'>
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="skeleton.css">
<link rel="stylesheet" type="text/css" href="custom.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="twelve columns uploadForm">
<pre style="white-space: pre-wrap;"><!-- Error is inserted here by PHP. </pre>
</div>
</div>
<div class="row">
<div class="twelve columns uploadForm">
<a href="index.html"><input type="submit" value="Return" name="submit"></input></a>
</div>
</div>
</div>
</body>
</html>
-->