| 12345 |
anikendra |
1 |
<div id="push"></div>
|
|
|
2 |
<?php echo $this->Form->create('User',array('class'=>'form-signin')); // echo $this->Form->input('username'); ?>
|
|
|
3 |
<!-- <a title="<?php echo __('Authorize with Facebook');?>" class="fb" href="<?php echo $dialog_url;?>" id="fblogin"></a> -->
|
|
|
4 |
<br/>
|
|
|
5 |
<?php //echo '<a title="'.__('Authorize with Twitter').'" class="twitterbutton" href="' . $twitterObj->getAuthorizationUrl() . '"></a>'; ?>
|
|
|
6 |
<h3 class="or-separator signpainter">or</h3>
|
|
|
7 |
<?php
|
|
|
8 |
echo $this->Form->input('email',array('placeholder'=>'Email Address','class'=>"input-block-level"));
|
|
|
9 |
echo $this->Form->input('password1', array('label' => 'Password', 'type' => 'password','placeholder'=>'Password','class'=>"input-block-level"));
|
|
|
10 |
echo $this->Form->input('password2', array('label' => 'Confirm password', 'type' => 'password','placeholder'=>'Confirm Password','class'=>"input-block-level"));
|
|
|
11 |
?>
|
|
|
12 |
<button class="btn btn-large btn-primary" type="submit"><?php echo __('Register');?></button>
|
|
|
13 |
<?php echo $this->Form->end();?>
|