1 |
hstehr |
1299 |
<?php |
2 |
|
|
include_once("inc/settings.php"); |
3 |
|
|
?> |
4 |
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
5 |
|
|
<html xmlns="http://www.w3.org/1999/xhtml"> |
6 |
|
|
|
7 |
|
|
<head> |
8 |
|
|
<title>Structure prediction server</title> |
9 |
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> |
10 |
|
|
<link rel="stylesheet" type="text/css" href="css/default.css" /> |
11 |
|
|
</head> |
12 |
|
|
<body> |
13 |
|
|
<?php include_once("inc/owl_header.inc.php") ?> |
14 |
|
|
|
15 |
|
|
<font color="red"> |
16 |
|
|
<?php |
17 |
|
|
if(isset($_GET['msg'])) { |
18 |
|
|
$msg = htmlentities(urldecode($_GET['msg'])); |
19 |
|
|
echo 'Internal error: '.$msg; |
20 |
|
|
} else { |
21 |
|
|
echo 'An unknown internal error occured.'; |
22 |
|
|
} |
23 |
|
|
?> |
24 |
|
|
</font> |
25 |
|
|
<p> |
26 |
|
|
<div class="buttons"> |
27 |
|
|
<a href="index.php"><img src="images/new.png" alt="" /> Start new job</a> |
28 |
|
|
</div> |
29 |
|
|
<div style="clear:both;"></div> |
30 |
|
|
</div> |
31 |
|
|
</p> |
32 |
|
|
</body> |
33 |
|
|
</html> |