This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
2015-09-29 12:05:00 +10:00

27 lines
656 B
PHP

<fieldset>
<legend>Service Details</legend>
<div class="dl-horizontal">
<dt>Domain Name</dt>
<dd><?php echo $o->name(); ?></dd>
<dt>Hosting Expire</dt>
<dd><?php echo $o->display('host_expire'); ?></dd>
<?php if ($x=$o->manage_button()) : ?>
<dt>Panel</dt>
<dd><?php echo $x; ?></dd>
<?php endif ?>
<?php if ($o->service->external_billing) : ?>
<dt>Provider</dt>
<dd><?php echo HTML::anchor($o->host->whitelabel_url,NULL); ?></dd>
<dt>Username</dt>
<dd><?php echo $o->host_username; ?></dd>
<dt>Password</dt>
<dd><?php echo $o->host_password; ?></dd>
<?php endif ?>
</div> <!-- dl-horizontal -->
</fieldset>