| 12345 |
anikendra |
1 |
<div id="registration">
|
|
|
2 |
<h3><?php echo __('Signup for a free account now');?>!</h3>
|
|
|
3 |
<?php
|
|
|
4 |
echo $this->Form->create('User',array('class'=>'form-signin form-horizontal','action'=>'register'));
|
|
|
5 |
echo $this->Form->input('email',array('placeholder'=>'Email Address','class'=>"input-block-level"));
|
|
|
6 |
echo $this->Form->input('password1', array('label' => 'Password', 'type' => 'password','placeholder'=>'Password','class'=>"input-block-level"));
|
|
|
7 |
echo $this->Form->input('password2', array('label' => 'Confirm password', 'type' => 'password','placeholder'=>'Confirm Password','class'=>"input-block-level"));
|
|
|
8 |
?>
|
|
|
9 |
<button class="btn btn-large btn-primary" type="submit"><?php echo __('Register');?></button>
|
|
|
10 |
<?php echo $this->Form->end();?>
|
|
|
11 |
</div>
|