34 lines
1.1 KiB
PHTML
34 lines
1.1 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle($this->config->title->data);
|
||
$this->headTitle('Download');
|
||
$this->headTitle()->setSeparator(' - ');
|
||
$this->breadcrumb('<a href="/">Home</a>');
|
||
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
|
||
$this->breadcrumb('Download');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
?>
|
||
<div class="row">
|
||
<div class="span3">
|
||
<div class="well sidebar-nav">
|
||
<?= $this->partial('account/left.phtml'); ?>
|
||
</div><!--/.well -->
|
||
</div><!--/span-->
|
||
<div class="span9">
|
||
<h1><?php echo $this->md['title']; ?>(<?php echo $this->md['filesize']; ?>MB)</h1>
|
||
<fieldset><legend>FTP URL</legend>
|
||
<ul>
|
||
<?php if ($this->ftpurl) : ?>
|
||
<li><a href="<?php echo $this->ftpurl; ?>"><?php echo $this->ftpurl; ?></a></li>
|
||
<?php endif;?>
|
||
</ul>
|
||
</fieldset>
|
||
|
||
<fieldset><legend>FTP Usage</legend>
|
||
Your FTP account: <ul><li>Username: <?php echo $this->username; ?></li>
|
||
<li>Password:<?php echo $this->userpass; ?></li>
|
||
<li>Active Time:<?php echo $this->ftptime; ?></li>
|
||
</ul>
|
||
</fieldset>
|
||
</div>
|
||
</div>
|