templates\security\username.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.     <meta charset="UTF-8">
  6.     <title>NEEMA OPTICIANS LTD</title>
  7.     <link href="{{ asset('css/bootstrap.min.css') }}" rel="stylesheet" />
  8.     <link rel="stylesheet" type="text/css" href="{{ asset('jquery-easyui-1.9.15/themes/bootstrap/easyui.css') }}">
  9.     <link rel="stylesheet" type="text/css" href="{{ asset('jquery-easyui-1.9.15/themes/icon.css') }}">
  10.     <link rel="stylesheet" type="text/css" href="{{ asset('jquery-easyui-1.9.15/demo/demo.css') }}">
  11.     <script type="text/javascript" src="{{ asset('jquery-easyui-1.9.15/jquery.min.js') }}"></script>
  12.     <script type="text/javascript" src="{{ asset('jquery-easyui-1.9.15/jquery.easyui.min.js') }}"></script>
  13.     <link rel='stylesheet' type='text/css' href="{{ asset('fonts/Amaranth/amaranth.css') }}" >
  14.     <link rel="stylesheet" type="text/css" href="{{ asset('fontawesome/css/all.css') }}">
  15.     <link rel="stylesheet" type="text/css" href="{{ asset('css/login.css') }}">
  16.     <link rel="stylesheet" type="text/css" href="{{ asset('css/style.css') }}">
  17. </head>
  18. <style type="text/css">
  19.     #formdiv{
  20.         background: none repeat scroll 0% 0% #F2F2F2;
  21.         width: 400px;
  22.         margin-left: 19%;
  23.         margin-top: -40px;
  24.     }
  25.     .form{
  26.         text-align: center;
  27.         min-height: 420px;
  28.     }
  29.     .form input, .form select {
  30.         margin: 15px 0 0;
  31.     }
  32.     .form-control {
  33.         border-radius: 0px;
  34.         height: 40px;
  35.     }
  36. </style>
  37. <body>
  38. <div class="login-page">
  39.     <div class="row">
  40.         <div class="col-lg-12 ">
  41.             {% for message in app.flashes('warning') %}
  42.                 <div class="alert alert-warning alert-dismissible show" role="alert">
  43.                     <strong>Warning</strong> {{ message }}
  44.                     <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  45.                         <span aria-hidden="true">&times;</span>
  46.                     </button>
  47.                 </div>
  48.             {% endfor %}
  49.             {% for message in app.flashes('error') %}
  50.                 <div class="alert alert-danger alert-dismissible show" role="alert">
  51.                     <strong>Error!</strong> {{ message }}
  52.                     <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  53.                         <span aria-hidden="true">&times;</span>
  54.                     </button>
  55.                 </div>
  56.             {% endfor %}
  57.             {% for message in app.flashes('success') %}
  58.                 <div class="alert alert-success show" role="alert">
  59.                     <strong>Success!</strong> {{ message }}
  60.                     <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  61.                         <span aria-hidden="true">&times;</span>
  62.                     </button>
  63.                 </div>
  64.             {% endfor %}
  65.         </div>
  66.     </div>
  67.     <div class="form">
  68.         <div style="">
  69.             <img id="profile-img" class="profile-img-card" src="{{ asset('img/neema_opticians.png') }}" />
  70.             <h2 style="font-family: Amaranth,serif;">SIGN UP</h2>
  71.         </div>
  72.         {{ form_start(form, {'attr':{'id':'login','class':'login-form'}}) }}
  73.                  {{ form_widget(form.phone,{'attr':{'class':'form-control','placeholder':'phone number' }} ) }}
  74.                     <div class="error" style="text-align: left; font-size: 12px; line-height: normal; ">
  75.                         {{ form_errors(form.phone) }}
  76.                     </div>
  77.                  {{ form_widget(form.password.first,{'attr':{'class':'form-control','placeholder':'password' }} ) }}
  78.                  {{ form_widget(form.password.second,{'attr':{'class':'form-control','placeholder':'repeat password' }} ) }}
  79.                   <div class="error" style="text-align: left; font-size: 12px; line-height: normal; ">
  80.                       {{ form_errors(form.password.first) }}
  81.                   </div>
  82.                 <input type="submit" class="btn btn-success" id="submit" name="submit" value="SIGN UP" />
  83.                 <div class="error">
  84. {#                         <div class="alert alert-danger">{{ form_errors(form) }}</div>#}
  85.                  </div>
  86.         {{ form_end(form) }}
  87.         <div id="poweredby">
  88.             powered by <span>&copyohau technologies,ltd</span>
  89.         </div>
  90.     </div>
  91. </div>
  92. </body>
  93. </html>