Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.33 KB | None | 0 0
  1. <div class="container">
  2.  
  3. <div class="row">
  4.     <div class="col-md-7 col-sm-7 col-xs-12">
  5.     <h2>Connexion</h2>
  6.         <div id="collapseOne" class="accordion-body collapse in">
  7.             <div class="accordion-inner">
  8.                 <div class="span4">
  9.                     <h4>Not yet registered ?</h4>
  10.                     <em>
  11.  
  12.                     When you want to shop on the internet for computer and technology products, </br> you often do not know where to start. Our site will allow you to find the best </br>
  13.                     products on the internet to make your purchases in all quietude, giving you </br>
  14.                     the time to choose the products at the best prices. Please register to place </br>
  15.                     your order quickly.
  16.                     </em>
  17.                     <br /><br />
  18.                     <a href="inscription.php" class="btn btn-primary">Create account</a>
  19.  
  20.                 </div>
  21.             </div>
  22.         </div>
  23.     </div>
  24.  
  25.  
  26.     <div class="col-md-5 col-sm-5 col-xs-12">
  27.         <div class="panel panel-primary">
  28.             <div class="panel-heading">
  29.                 <h3 class="panel-title">Sign in</h3>
  30.             </div>
  31.  
  32.             <div class="panel-body">
  33.                 <form action="{{ path("fos_user_security_check") }}" method="post">
  34.                     <input type="hidden" name="_csrf_token" value="{{ csrf_token }}" />
  35.                     <label for="username">{{ 'security.login.username'|trans }}</label>
  36.                     <input type="text" id="username" name="_username" value="{{ last_username }}" required="required" /> </br>
  37.                     <label for="password">{{ 'security.login.password'|trans }}</label>
  38.                     <input type="password" id="password" name="_password" required="required" /> <br/>
  39.                     <input type="checkbox" id="remember_me" name="_remember_me" value="on" />
  40.                     <label for="remember_me">{{ 'security.login.remember_me'|trans }}</label>
  41.                     <input class="btn btn-primary" type="submit" id="_submit" name="_submit" value="{{ 'security.login.submit'|trans }}" />
  42.                 </form>
  43.             </div>
  44.         </div>
  45.  
  46.         <div class="span10">
  47.         <a href={{ path('fos_user_resetting_request') }}>Forget my password ?</a>
  48.         </div>
  49.     </div>
  50. </div>
  51.  
  52. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement