CommunityID/modules/users/views/scripts/register/index.phtml

15 lines
653 B
PHTML
Raw Normal View History

2019-07-17 20:16:19 +00:00
<h2><?php echo $this->translate('Registration Form') ?></h2>
<form name="registration" method="post" action="<?php echo $this->base ?>/users/register/save" class="formGrid" >
<?php echo $this->form->firstname ?>
<?php echo $this->form->lastname ?>
<?php echo $this->form->email ?>
<?php echo $this->form->username ?>
<?php echo $this->form->password1 ?>
<?php echo $this->form->password2 ?>
<?php echo $this->form->captcha ?>
<input type="submit" id="send" value="<?php echo $this->translate('Send') ?>" />
2019-07-17 20:08:50 +00:00
<script type="text/javascript">
var oButton = new YAHOO.widget.Button("send");
</script>
</form>