| Line 1... |
Line 1... |
| 1 |
<div id="push"></div>
|
1 |
<div id="push"></div>
|
| 2 |
<p class="text-center">
|
- |
|
| 3 |
<h2>Login with your Facebook account</h2>
|
- |
|
| 4 |
<p class="text-info">We'll never post anything on your Facebook wall without your permission.</p>
|
- |
|
| 5 |
<a title="<?php echo __('Authorize with Facebook');?>" href="<?php echo $dialog_url;?>" class="fb" id="fblogin"><img src="<?php echo $base_url;?>img/facebook-connect.jpg" alt="" /></a>
|
- |
|
| 6 |
</p>
|
- |
|
| 7 |
<?php //echo '<a title="'. __('Authorize with Twitter').'" class="twitterbutton" href="' . $twitterObj->getAuthorizationUrl() . '"></a>'; ?>
|
- |
|
| 8 |
|
- |
|
| 9 |
<h3 class="or-separator signpainter">or</h3>
|
- |
|
| 10 |
<div style="margin: 0pt; padding: 0pt; display: inline;">
|
2 |
<div style="margin: 0pt; padding: 0pt; display: inline;">
|
| 11 |
<?php echo $this->Form->create('User',array('class'=>'form-signin'));?>
|
3 |
<?php echo $this->Form->create('User',array('class'=>'form-signin'));?>
|
| 12 |
<div id="UserUsername" class="textInput">
|
4 |
<div id="UserUsername" class="textInput">
|
| 13 |
<?php echo $this->Form->input('username',array('placeholder'=>'myself@example.com','class'=>"input-block-level"));?>
|
5 |
<?php echo $this->Form->input('username',array('placeholder'=>'myself@example.com','class'=>"input-block-level"));?>
|
| 14 |
</div>
|
6 |
</div>
|
| 15 |
<div id="inputPassword" class="textInput">
|
7 |
<div id="inputPassword" class="textInput">
|
| 16 |
<?php echo $this->Form->input('password', array('type' => 'password','placeholder'=>'Password','class'=>"input-block-level"));?>
|
8 |
<?php echo $this->Form->input('password', array('type' => 'password','placeholder'=>'Password','class'=>"input-block-level"));?>
|
| 17 |
</div>
|
9 |
</div>
|
| 18 |
<div class="clear"></div>
|
10 |
<div class="clear"></div>
|
| 19 |
<div class="formActions clearfix">
|
11 |
<div class="formActions clearfix">
|
| 20 |
<button class="btn btn-large btn-primary" type="submit"><?php echo __('Sign in');?></button>
|
12 |
<button class="btn btn-large btn-primary" type="submit"><?php echo __('Sign in');?></button>
|
| 21 |
<div class="extra-actions clearfix">
|
13 |
<div class="extra-actions clearfix">
|
| 22 |
<a class="forgotPassword" href="<?php echo $base_url;?>users/forgotten_password"><?php echo __('Forgot password');?>?</a> <span class="dot">·</span>
|
14 |
<a class="forgotPassword" href="<?php echo $base_url;?>users/forgotten_password"><?php echo __('Forgot password');?>?</a> <span class="dot">·</span>
|
| 23 |
<a href="<?php echo $base_url;?>users/register"><?php echo __('Need an account');?>?</a>
|
15 |
<a href="<?php echo $base_url;?>users/register"><?php echo __('Need an account');?>?</a>
|
| 24 |
</div>
|
- |
|
| 25 |
</div>
|
16 |
</div>
|
| - |
|
17 |
</div>
|
| 26 |
<?php echo $this->Form->end();?>
|
18 |
<?php echo $this->Form->end();?>
|
| 27 |
</div>
|
19 |
</div>
|
| 28 |
|
20 |
|