| 13532 |
anikendra |
1 |
<div id="push"></div>
|
|
|
2 |
<?php echo $this->Form->create('User',array('class'=>'form-signin'));?>
|
|
|
3 |
<div id="UserUsername" class="textInput">
|
|
|
4 |
<?php echo $this->Form->input('email',array('placeholder'=>'Email Address','class'=>"input-block-level"));?>
|
|
|
5 |
</div>
|
|
|
6 |
<div id="inputPassword" class="textInput">
|
|
|
7 |
<?php echo $this->Form->input('password1', array('label' => 'Password', 'type' => 'password','placeholder'=>'Password','class'=>"input-block-level"));?>
|
|
|
8 |
</div>
|
|
|
9 |
<div id="confirmPassword" class="textInput">
|
|
|
10 |
<?php echo $this->Form->input('password2', array('label' => 'Confirm password', 'type' => 'password','placeholder'=>'Confirm Password','class'=>"input-block-level"));?>
|
|
|
11 |
</div>
|
|
|
12 |
<div class="clearfix"/>
|
|
|
13 |
<button class="btn btn-large btn-primary" type="submit"><?php echo __('Register');?></button>
|
| 13714 |
anikendra |
14 |
<?php echo $this->Form->end();?>
|