Newer
Older
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
<?php if(!defined('SETUPINC')) die('Kwaheri!');
$info=($_POST && $errors)?Format::htmlchars($_POST):$_SESSION['info'];
?>
<div id="main">
<h1>Basic Installation Completed</h1>
<p>osTicket installation has been completed successfully.</p>
<h3 style="color:#FF7700;">Stay up to date: </h3>
It's important to keep your installation up to date. Get announcements, security updates and alerts delivered directly to you!
<br><br>
<form action="install.php" method="post">
<input type="hidden" name="s" value="subscribe">
<div class="row">
<label>Full Name:</label>
<input type="text" name="name" size="30" value="<?php echo $info['name']; ?>">
<font color="red"><?php echo $errors['name']; ?></font>
</div>
<div class="row">
<label>Email Address:</label>
<input type="text" name="email" size="30" value="<?php echo $info['email']; ?>">
<font color="red"><?php echo $errors['email']; ?></font>
</div>
<br>
<div class="row">
<strong>I'd like to receive the following notifications: <font color="red"><?php echo $errors['notify']; ?></font></strong>
<label style="width:500px">
<input style="position:relative; top:4px; margin-right:10px"
type="checkbox" name="news" value="1" <?php echo (!isset($info['news']) || $info['news'])?'checked="checked"':''; ?> >
News & Announcements</label>
<label style="width:500px">
<input style="position:relative; top:4px; margin-right:10px"
type="checkbox" name="alerts" value="1" <?php echo (!isset($info['alerts']) || $info['alerts'])?'checked="checked"':''; ?>>
Security Alerts</label>
</div>
<div id="bar">
<input class="btn" type="submit" value="Keep me Updated">
<a class="unstyled" href="install.php?s=ns">No thanks.</a>
</div>
</form>
</div>
<div id="sidebar">
<h3>Thank you!</h3>
<p>
Once again, thank you for choosing osTicket as your new customer support platform!
</p>
<p>
Launching a new customer support platform can be a daunting task. Let us get you started! We provide professional support services to help get osTicket up and running smoothly for your organization. <a target="_blank" href="http://osticket.com/support/professional_services.php">Learn More!</a>
</p>
</div>