-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
49 lines (46 loc) · 2.02 KB
/
index.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
48
49
<?php
/*
* This file is part of phpDNSAdmin.
* (c) 2010 Matthias Lohr - http://phpdnsadmin.sourceforge.net/
*
* phpDNSAdmin is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* phpDNSAdmin is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with phpDNSAdmin. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="js/extjs/resources/css/ext-all.css" />
<link rel="stylesheet" type="text/css" href="js/extjs/growl/css/ext/ux/Growl.css" />
<link rel="stylesheet" type="text/css" href="js/extjs/roweditor/css/RowEditor.css" />
<link rel="stylesheet" type="text/css" href="css/pdastyle.css" />
<script type="text/javascript" src="js/extjs/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="js/extjs/ext-all.js"></script>
<script type="text/javascript" src="js/extjs/growl/Growl.js"></script>
<script type="text/javascript" src="js/extjs/extjs.addons.js"></script>
<script type="text/javascript" src="js/extjs/roweditor/RowEditor.js"></script>
<script type="text/javascript" src="js/extjs/dnswriter/DnsWriter.js"></script>
<script type="text/javascript" src="js/extjs/App.js"></script>
<script type="text/javascript" src="js/pdaapi.js"></script>
<script type="text/javascript" src="js/pdagui.js"></script>
<title id="page-title">phpDNSAdmin</title>
<script type="text/javascript">
Ext.onReady(function() {
Ext.QuickTips.init();
var GUI = new pdaGUI(new pdaAPI('api'));
});
</script>
</head>
<body>
</body>
</html>