forked from HelioNetworks/HelioPanel2_archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.php
60 lines (55 loc) · 2.32 KB
/
scripts.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
50
51
52
53
54
55
56
57
58
59
60
<?php $current="scripts"; ?>
<?php include ("inc/header.php"); ?>
<?php include ("inc/menu.php"); ?>
<?php include ("inc/logo.php"); ?>
<div id="content">
<?php if (!isset($_GET['go'])) {
?>
<div class="post">
<h2 class="title"><a href="#">Account Scripts</a></h2>
<div class="entry">
<p>
<a href="scripts.php?go=renew" class="button orange">Account Renewal →</a><br /><br />
<a href="scripts.php?go=domain" class="button orange">Main Domain Change →</a><br /><br />
<a href="scripts.php?go=dns" class="button orange">DNS Record Lookup →</a><br /><br />
<a href="scripts.php?go=status" class="button orange">Creation Status →</a><br /><br />
<a href="scripts.php?go=del" class="button orange">Delete Account →</a><br /><br />
</p>
</div>
</div>
<?php
}elseif ($_GET['go'] != 'dns' && $_GET['go'] != 'del') {
?>
<a href="scripts.php" class="button orange">← Choose another script</a><br /><br />
<div class="post">
<div class="entry">
<IFRAME src="http://www.heliohost.org/scripts/<?php echo $_GET['go']; ?>.php" WIDTH="100%" HEIGHT="300" SCROLLING="no" FRAMEBORDER="0" BORDER="0">Your mobile device does not support this script.</IFRAME>
</div>
</div>
<?php
}elseif ($_GET['go'] == 'dns') {
?>
<a href="scripts.php" class="button orange">← Choose another script</a><br /><br />
<div class="post">
<div class="entry">
<IFRAME src="http://byrondallas.heliohost.org/php/tools/dns_records.php" WIDTH="100%" HEIGHT="300" SCROLLING="no" FRAMEBORDER="0" BORDER="0">Your mobile device does not support this script.</IFRAME>
</div>
</div>
<?php
}elseif ($_GET['go'] == 'del') {
?>
<div class="post">
<div class="entry">
<p style="color:red;font-size:15px;font-weight:bold;">Your account will be permanently deleted and cannot be recovered. Are you sure?</p>
<p><a href="scripts.php?go=delete" class="button red large">YES, DELETE MY ACCOUNT</a> <a href="scripts.php" class="button green super">No, Go Back</a></p>
<p>You will need to confirm your account details before deleting.</p>
</div>
</div>
<?php
}
?>
<div style="clear: both;"> </div>
</div>
<!-- end #content -->
<?php include ("inc/sidebar.php"); ?>
<?php include ("inc/footer.php"); ?>