shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

login.twig (1784B)


      1 <div class="row">
      2   <div class="col-sm-6">
      3     <h2>{{ text_new_customer }}</h2>
      4     <p>{{ text_checkout }}</p>
      5     <div class="radio">
      6       <label> {% if account == 'register' %}
      7         <input type="radio" name="account" value="register" checked="checked" />
      8         {% else %}
      9         <input type="radio" name="account" value="register" />
     10         {% endif %}
     11         {{ text_register }}</label>
     12     </div>
     13     {% if checkout_guest %}
     14     <div class="radio">
     15       <label> {% if account == 'guest' %}
     16         <input type="radio" name="account" value="guest" checked="checked" />
     17         {% else %}
     18         <input type="radio" name="account" value="guest" />
     19         {% endif %}
     20         {{ text_guest }}</label>
     21     </div>
     22     {% endif %}
     23     <p>{{ text_register_account }}</p>
     24     <input type="button" value="{{ button_continue }}" id="button-account" data-loading-text="{{ text_loading }}" class="btn btn-primary" />
     25   </div>
     26   <div class="col-sm-6">
     27     <h2>{{ text_returning_customer }}</h2>
     28     <p>{{ text_i_am_returning_customer }}</p>
     29     <div class="form-group">
     30       <label class="control-label" for="input-email">{{ entry_email }}</label>
     31       <input type="text" name="email" value="" placeholder="{{ entry_email }}" id="input-email" class="form-control" />
     32     </div>
     33     <div class="form-group">
     34       <label class="control-label" for="input-password">{{ entry_password }}</label>
     35       <input type="password" name="password" value="" placeholder="{{ entry_password }}" id="input-password" class="form-control" />
     36       <a href="{{ forgotten }}">{{ text_forgotten }}</a></div>
     37     <input type="button" value="{{ button_login }}" id="button-login" data-loading-text="{{ text_loading }}" class="btn btn-primary" />
     38   </div>
     39 </div>