forked from kamenitxan/raidplaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runsetup.php
47 lines (43 loc) · 1.43 KB
/
runsetup.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
40
41
42
43
44
45
46
47
<?php
require_once("lib/private/locale.php");
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>Raidplaner setup</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<style type="text/css" media="screen">
html {
height: 100%;
}
body {
min-width: 800px;
min-height: 600px;
text-align: center;
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.8em;
padding: 0px;
margin: 0px;
height: 100%;
}
div.appwindow {
width: 600px;
height: 460px;
position: relative;
top: 50%;
margin: -230px auto 0 auto;
background-color: white;
}
</style>
</head>
<body>
<div class="appwindow">
<img src="lib/layout/images/alert.png" style="margin-bottom: 20px"/><br/>
<?php echo L("RaidplanerNotConfigured"); ?><br>
<?php echo L("PleaseRunSetup"); ?>
</div>
</body>
</html>