Your IP : 216.73.216.240


Current Path : /home/sunflowe/www2/j15/administrator/components/com_easycaptcha/views/captcha/tmpl/
Upload File :
Current File : /home/sunflowe/www2/j15/administrator/components/com_easycaptcha/views/captcha/tmpl/form.php

<?php
// no direct access
defined('_JEXEC') or die('Restricted access');
?>
<form action="index.php" method="post" name="adminForm">


<div class="col width-50">
	<fieldset class="adminform">
		<legend><?php echo JText::_( 'Parameters' ); ?></legend>

		<table class="admintable">
		<tr>
			<td colspan="2">
				<?php echo $this->params->render();?>
			</td>
		</tr>
		</table>
	</fieldset>
</div>

<div class="col width-50">
	<fieldset class="adminform">
		<legend><?php echo JText::_( 'Description' ); ?></legend>

		<table class="admintable">
		<tr>
			<td>
				<?php echo $this->row->description; ?>
			</td>
		</tr>
		</table>
	</fieldset>
</div>
<div class="col width-50">
	<fieldset class="adminform">
		<legend><?php echo JText::_( 'Preview' ); ?></legend>

		<table class="admintable">
		<tr>
			<td>
				<?php
				$image = '<img src="'.JURI::base().'../components/com_easycaptcha/captchas/'.$this->row->name.'/preview.jpg" alt="'.JTEXT::_('Captcha').'" />';
				echo $image;
				?>
			</td>
		</tr>
		</table>
	</fieldset>
</div>
<div class="clr"></div>
<input type="hidden" name="cid" value="<?php echo $this->row->id; ?>" />"
<input type="hidden" name="option" value="com_easycaptcha" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="controller" value="captcha" />
<?php echo JHTML::_( 'form.token' ); ?>
</form>