templates\security\forgot.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Şifremi Unuttum{% endblock %}
  3. {% block body %}
  4.     <form method="post" class="mx-auto" style="max-width: 400px">
  5.         <div class="container my-3">
  6.             <h1 class="h3 mb-3 font-weight-normal">Şifremi Unuttum</h1>
  7.             {% if email %}
  8.                 {% if error %}
  9.                     <p>Geçersiz e-posta adresi: <b>{{ email }}</b></p>
  10.                 {% else %}
  11.                     <p>Şifre sıfırlama işlemleri için gerekli bilgiler e-posta adresinize gönderilmiştir: <b>{{ email }}</b></p>
  12.                 {% endif %}
  13.             {% else %}
  14.                 <p>
  15.                     Şifrenizi sıfırlamak için lütfen e-posta adresinizi yazın
  16.                 </p>
  17.                 <p>
  18.                     <label for="inputUsername">E-posta Adresi</label>
  19.                     <input type="email" name="email" id="inputUsername" class="form-control" required autofocus>
  20.                 </p>
  21.                 <p>
  22.                     <button class="btn btn-lg btn-primary" type="submit">
  23.                         E-posta Gönder &gt;&gt;
  24.                     </button>
  25.                 </p>
  26.             {% endif %}
  27.         </div>
  28.     </form>
  29. {% endblock %}