36 lines
1.2 KiB
PHTML
36 lines
1.2 KiB
PHTML
<form enctype="application/x-www-form-urlencoded" method="post" action="">
|
|
<dl class="zend_form">
|
|
|
|
<dt id="username-label">
|
|
<label for="username" class="required">
|
|
<?php echo $this->element->getElement('username')->getLabel() ?>
|
|
</label>
|
|
</dt>
|
|
<dd id="username-element">
|
|
<?php echo $this->element->getElement('username') ?>
|
|
</dd>
|
|
|
|
<dt id="password-label">
|
|
<label for="password" class="required">
|
|
<?php echo $this->element->getElement('password')->getLabel() ?>
|
|
</label>
|
|
</dt>
|
|
<dd id="password-element">
|
|
<?php echo $this->element->getElement('password') ?>
|
|
</dd>
|
|
|
|
<?php if (Application_Model_Preference::GetEnableSystemEmail()): ?>
|
|
<dt id="reset-label" class="hidden"> </dt>
|
|
<dd id="reset-element" class="text-right">
|
|
<a href="<?php echo $this->baseUrl('login/password-restore'); ?>" class="link reset"><? echo _("Reset password") ?></a>
|
|
</dd>
|
|
<?php endif; ?>
|
|
<?php echo $this->element->getElement('captcha') ?>
|
|
<dt id="submit-label"> </dt>
|
|
<dd id="submit-element">
|
|
<?php echo $this->element->getElement('submit') ?>
|
|
</dd>
|
|
|
|
</dl>
|
|
</form>
|