templates/security/password.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}パスワード請求{% endblock %}</title>
  6.         <meta charset="utf-8">
  7.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.         <meta name="viewport" content="width=device-width, initial-scale=1">
  9.         <meta name="author" content="株式会社ステラリンク">
  10.         <link href="{{ asset('/css/common.css') }}" rel="stylesheet" />
  11.         <link rel="icon" type="image/x-icon" href="{{ asset('/img/SScloud_favicon64.png') }}">
  12.     </head>
  13.     <body class="login_backgroud">
  14.         <div class="login_wrapper">
  15.             <img src="{{ asset('img/StellarSign CLOUD_LOGO.jpg') }}" class="login_logo" alt="">
  16.             {% if error != "" %}
  17.                 <div class="alert alert-danger">{{ error }}</div>
  18.             {% endif %}
  19.             {{ form_start(form) }}
  20.                  登録されているメールアドレスを入力してください。
  21.                  <p>
  22.                     {{ form_widget(form.mailaddress , {'attr' : {'class' : 'login_text form-control'}}) }}
  23.                  </p>
  24.                 <button  type="submit" class="login_button">送信</button>
  25.             {{ form_end(form) }}
  26.             
  27.             <a href="{{ path('app_login') }}">TOPに戻る</a>
  28.             
  29.         </div>
  30.     </body>
  31. </html>