27 lines
593 B
PHP
27 lines
593 B
PHP
<fieldset class="span5">
|
|
<legend>Service Details</legend>
|
|
|
|
<div class="dl-horizontal">
|
|
|
|
<dt>Domain Name</dt>
|
|
<dd><?php echo $o->name(); ?></dd>
|
|
|
|
<dt>Domain Expire</dt>
|
|
<dd><?php echo $o->display('domain_expire'); ?></dd>
|
|
|
|
<dt>Domain Auth Password</dt>
|
|
<dd><?php echo $o->display('registrar_auth_password'); ?></dd>
|
|
|
|
<?php if ($x=$o->manage_button()) : ?>
|
|
<dt>Registrar</dt>
|
|
<dd><?php echo $x; ?></dd>
|
|
<?php endif ?>
|
|
|
|
<?php if ($x=$o->manage_dns_button()) : ?>
|
|
<dt>DNS</dt>
|
|
<dd><?php echo $x; ?></dd>
|
|
<?php endif ?>
|
|
|
|
</div> <!-- dl-horizontal -->
|
|
</fieldset>
|