| 12345 |
anikendra |
1 |
<div id="push"></div>
|
|
|
2 |
<?php echo $this->Form->create('User',array('class'=>'form-signin'));?>
|
|
|
3 |
<!-- <a title="<?php echo __('Authorize with Facebook');?>" href="<?php echo $dialog_url;?>" class="fb" id="fblogin"><img src="<?php echo $base_url;?>img/connect.png" alt="" /></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 |
<!--<h2 class="form-signin-heading"><?php echo __('Log In');?></h2>-->
|
|
|
8 |
<div style="margin: 0pt; padding: 0pt; display: inline;">
|
|
|
9 |
<div id="UserUsername" class="textInput">
|
|
|
10 |
<label for="UserUsername"><?php echo __('Email');?></label>
|
|
|
11 |
<?php echo $this->Form->input('username',array('label'=>false,'placeholder'=>'myself@example.com','class'=>"input-block-level"));?>
|
|
|
12 |
</div>
|
|
|
13 |
<div id="inputPassword" class="textInput">
|
|
|
14 |
<?php echo $this->Form->input('password', array('type' => 'password','placeholder'=>'Password','class'=>"input-block-level"));?>
|
|
|
15 |
</div>
|
|
|
16 |
<div class="clear"></div>
|
|
|
17 |
<div class="formActions clearfix">
|
|
|
18 |
<button class="btn btn-large btn-primary" type="submit"><?php echo __('Sign in');?></button>
|
|
|
19 |
<div class="extra-actions clearfix">
|
|
|
20 |
<a class="forgotPassword" href="<?php echo $base_url;?>users/forgotten_password"><?php echo __('Forgot password');?>?</a> <span class="dot">ยท</span>
|
|
|
21 |
<a href="<?php echo $base_url;?>users/register"><?php echo __('Need an account');?>?</a>
|
|
|
22 |
</div>
|
|
|
23 |
</div>
|
|
|
24 |
<?php echo $this->Form->end();?>
|
|
|
25 |
</div>
|