예제 #1
0
				<tr>
					<td colspan="2"><?php 
    echo \GO::t('forgotPasswordText', 'site');
    ?>
</td>
				</tr>
				<tr>
					<td><label><?php 
    echo \GO::t('ticketEmail', 'defaultsite');
    ?>
</label></td>
					<td><input type="text" name="email" /></td>
				</tr>	
			</table>

			<div class="button-bar">
				<?php 
    echo $form->submitButton(\GO::t('submit', 'defaultsite'), array('id' => 'submit-forgotpassword-button', 'class' => 'button'));
    ?>
				<div class="clear"></div>
			</div>

		<?php 
}
?>

		<?php 
echo $form->endForm();
?>
	</div>
</div>
예제 #2
0
				</tr>
				<tr>
					<td><?php 
    echo $form->label($user, 'passwordConfirm');
    ?>
</td>
					<td><?php 
    echo $form->passwordField($user, 'passwordConfirm');
    echo $form->error($user, 'passwordConfirm');
    ?>
</td>
				</tr>
			</table>
			<div class="button-bar">
				<?php 
    echo $form->submitButton(\GO::t('submit', 'defaultsite'));
    echo $form->resetButton('Reset');
    ?>
				<div class="clear"></div>
			</div>
				
		<?php 
}
?>

		<?php 
echo $form->endForm();
?>
	</div>
</div>
예제 #3
0
파일: ticket.php 프로젝트: ajaboa/crmpuan
    ?>
		
			<?php 
    $uploader = new \GO\Site\Widget\Plupload\Widget();
    ?>
		
			<h3><?php 
    echo \GO::t('ticketYourMessage', 'defaultsite');
    ?>
</h3>

			<?php 
    echo $form->textArea($new_message, 'content', array('required' => true));
    ?>
			<?php 
    echo $uploader->render();
    ?>
			<div class="button-bar">
				<?php 
    echo $form->submitButton(\GO::t('ticketAddComment', 'defaultsite'), array('id' => 'submit-ticket-button', 'class' => 'button'));
    ?>
			</div>
			<?php 
    echo $form->endForm();
    ?>
		<?php 
}
?>
	</div>
</div>
예제 #4
0
파일: newtrial.php 프로젝트: ajaboa/crmpuan
echo $form->textField($model, 'last_name');
?>
	<?php 
echo $form->error($model, 'last_name');
?>
</div>	

<div class="row formrow">
	<?php 
echo $form->label($model, 'email');
?>
	<?php 
echo $form->textField($model, 'email');
?>
	<?php 
echo $form->error($model, 'email');
?>
</div>	

<div class="row buttons">
	<?php 
echo $form->submitButton('Create trial!');
?>
	<?php 
echo $form->resetButton('Reset');
?>
</div>

<div style="clear:both"></div>
<?php 
echo $form->endForm();