blob: 28d280fdc95cfed9cfa852f43a19a0945cb3c32c (
plain)
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 defined("SYSPATH") or die("No direct script access.") ?>
<script type="text/javascript">
$("#gDigibugTabs").ready(function() {
$("#gDigibugTabs").tabs({});
});
</script>
<div id="gAdminDigibug">
<div class="gAdminDigibugIntro">
<p>
<?= t("offers you two options for turning your photos into a wide variety of prints, gifts and games. Choose your solution and get started today!") ?>
</p>
</div>
<div id="gDigibugTabs">
<ul>
<li><a href="#gDigibugTabBasic"><?= t("Basic") ?></a></li>
<li><a href="#gDigibugTabAdvanced"><?= t("Advanced") ?></a></li>
</ul>
<div id="gDigibugTabBasic" class="gDigibugTab">
<div class="gDigibugText">
<?= t("Use Digibug Basic and there's nothing else to do - no registration, no administration.") ?>
</div>
<div class="gDigibugRounded ui-corner-all">
<br/>
<? if ($mode == "basic"): ?>
<?= t("You are currently using Basic mode!") ?>
<? else: ?>
<a href='<?= url::site("admin/digibug/basic?csrf=$csrf") ?>'><?= t("Click Here") ?></a>
<?= t(" to switch back to basic") ?>
<? endif ?>
</div>
</div>
<div id="gDigibugTabAdvanced" class="gDigibugTab">
<div class="gDigibugText">
<?= t("Digibug Advanced allows you to set your own price for photos and gifts. Simply provide your account information.") ?>
</div>
<div style="width: 120px;" class="gDigibugText gDigibugSignIn">
<?= t("New to Digibug Advanced?") ?>
<br/> <br/>
<a href="http://www.digibug.com/signup.php" style=""><?= t("Sign up") ?></a><?= t(" to get started") ?>
</div>
<div class="gDigibugAdvancedForm">
<div class="gDigibugText"><?= t("Enter your Digibug company ID and event ID") ?></div>
<?= $form ?>
</div>
</div>
</div>
</div>
|