Advertisement
Guest User

Untitled

a guest
Jul 8th, 2014
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.01 KB | None | 0 0
  1. <ol class="breadcrumb">
  2.     <li itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
  3.         <a href="{relative_path}/" itemprop="url"><span itemprop="title">[[global:home]]</span></a>
  4.     </li>
  5.     <li class="active" itemscope="itemscope" itemtype="http://data-vocabulary.org/Breadcrumb">
  6.         <span itemprop="title">[[global:login]]</span>
  7.     </li>
  8. </ol>
  9.  
  10.  
  11. <div class="row">
  12.         <!-- IF alternate_logins -->
  13.     <div class="<!-- IF allowLocalLogin -->col-md-6<!-- ELSE -->col-md-12<!-- ENDIF allowLocalLogin -->">
  14.         <div class="well well-lg">
  15.             <h4>[[login:alternative_logins]]</h4>
  16.             <ul class="alt-logins">
  17.                 <!-- BEGIN authentication -->
  18.                 <li class="{authentication.name}"><a rel="nofollow" href="{relative_path}{authentication.url}"><i class="fa fa-{authentication.icon}-square fa-3x"></i></a></li>
  19.                 <!-- END authentication -->
  20.             </ul>
  21.         </div>
  22.     </div>
  23.     <!-- ENDIF alternate_logins -->
  24.     <!-- IF allowLocalLogin -->
  25.     <div class="<!-- IF alternate_logins -->col-md-6<!-- ELSE -->col-md-12<!-- ENDIF alternate_logins -->">
  26.         <div class="well well-lg">
  27.             <div class="alert alert-danger" id="login-error-notify" style="display:none">
  28.                 <button type="button" class="close" data-dismiss="alert">&times;</button>
  29.                 <strong>[[login:failed_login_attempt]]</strong> <p></p>
  30.             </div>
  31.  
  32.             <form class="form-horizontal" role="form" method="post">
  33.                 <div class="form-group">
  34.                     <label for="username" class="col-lg-2 control-label">[[login:username]]</label>
  35.                     <div class="col-lg-10">
  36.                         <input class="form-control" type="text" placeholder="[[login:username]]" name="username" id="username" />
  37.                     </div>
  38.                 </div>
  39.                 <div class="form-group">
  40.                     <label for="password" class="col-lg-2 control-label">[[user:password]]</label>
  41.                     <div class="col-lg-10">
  42.                         <input class="form-control" type="password" placeholder="[[user:password]]" name="password" id="password" />
  43.                     </div>
  44.                 </div>
  45.                 <div class="form-group">
  46.                     <div class="col-lg-offset-2 col-lg-10">
  47.                         <div class="checkbox">
  48.                             <label>
  49.                                 <input type="checkbox" name="remember" id="remember" checked /> [[login:remember_me]]
  50.                             </label>
  51.                         </div>
  52.                     </div>
  53.                 </div>
  54.                 <div class="form-group">
  55.                     <div class="col-lg-offset-2 col-lg-10">
  56.                         <hr />
  57.                         <button class="btn btn-primary btn-lg btn-block" id="login" type="submit">[[global:login]]</button>
  58.                         <!-- IF allowRegistration -->
  59.                         <span>[[login:dont_have_account]] <a href="{relative_path}/register">[[register:Register]]</a></span>
  60.                         <!-- ENDIF allowRegistration -->
  61.                         <!-- IF showResetLink -->
  62.                         &nbsp; <a id="reset-link" href="{relative_path}/reset">[[login:forgot_password]]</a>
  63.                         <!-- ENDIF showResetLink -->
  64.                     </div>
  65.                 </div>
  66.                 <input type="hidden" name="_csrf" value="{token}" id="csrf-token" />
  67.                 <!-- IF previousUrl -->
  68.                 <input type="hidden" name="previousUrl" value="{previousUrl}" />
  69.                 <!-- ENDIF previousUrl -->
  70.             </form>
  71.  
  72.         </div>
  73.     </div>
  74.     <!-- ENDIF allowLocalLogin -->
  75.  
  76. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement