templates/security/forgot_password.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="loading" lang="tr" data-textdirection="ltr">
  3. <!-- BEGIN: Head-->
  4. <head>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=0,minimal-ui">
  8.     <title>Şifremi unuttum</title>
  9.     <link rel="apple-touch-icon" href="{{ asset('assets/f1.webp') }}">
  10.     <link rel="shortcut icon" type="image/x-icon" href="{{ asset('assets/f1.webp') }}">
  11.     <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500;1,600" rel="stylesheet">
  12.     <!-- BEGIN: Vendor CSS-->
  13.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/vendors/css/vendors.min.css') }}">
  14.     <!-- END: Vendor CSS-->
  15.     <!-- BEGIN: Theme CSS-->
  16.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/bootstrap.min.css') }}">
  17.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/bootstrap-extended.min.css') }}">
  18.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/colors.min.css') }}">
  19.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/components.min.css') }}">
  20.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/themes/semi-dark-layout.min.css') }}">
  21.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/themes/bordered-layout.min.css') }}">
  22.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/themes/semi-dark-layout.min.css') }}">
  23.     <!-- BEGIN: Page CSS-->
  24.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/core/menu/menu-types/vertical-menu.min.css') }}">
  25.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/plugins/forms/form-validation.css') }}">
  26.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/pages/page-auth.min.css') }}">
  27.     <!-- END: Page CSS-->
  28.     <!-- BEGIN: Custom CSS-->
  29.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/assets/css/style.css') }}">
  30.     <!-- END: Custom CSS-->
  31. </head>
  32. <!-- END: Head-->
  33. <!-- BEGIN: Body-->
  34. <body class="vertical-layout vertical-menu-modern blank-page navbar-floating footer-static  " data-open="click" data-menu="vertical-menu-modern" data-col="blank-page">
  35. <!-- BEGIN: Content-->
  36. <div class="app-content content ">
  37.     <div class="content-overlay"></div>
  38.     <div class="header-navbar-shadow"></div>
  39.     <div class="content-wrapper">
  40.         <div class="content-header row">
  41.         </div>
  42.         <div class="content-body"><div class="auth-wrapper auth-v1 px-2">
  43.                 <div class="auth-inner py-2">
  44.                     <!-- Login v1 -->
  45.                     <div class="card mb-0">
  46.                         <div class="card-body">
  47.                             <a href="javascript:void(0);" class="brand-logo text-center d-block">
  48.                                 <img src="{{ asset('assets/l1.webp') }}" alt="RV Yönetim Panel" class="mr-2 w-75">
  49.                                 <h2 class="brand-text " style="margin-top: 10px;">Web Yönetim Paneli</h2>
  50.                             </a>
  51.                             <h4 class="card-title mb-1">Şifreni mi unuttun?</h4>
  52.                             <p class="card-text mb-2">Şifreni yenilemek için kayıtlı e-posta bilgilerini gir.</p>
  53.                             <form class="auth-login-form mt-2" method="post">
  54.                                 <div class="form-group">
  55.                                     <label class="form-label" for="login-email" style="font-size: 13px; font-weight: bold;">Kayıtlı E-Posta:</label>
  56.                                     <input class="form-control" id="login-email" type="email" name="email" autocomplete="email" placeholder="username@siteadi.com" aria-describedby="login-email" autofocus="" tabindex="1" required/>
  57.                                 </div>
  58.                                 <button class="btn btn-primary btn-block" tabindex="4">Şifremi Yenile</button>
  59.                                 {% if error|default('')!='' %}
  60.                                     <div class="alert alert-danger mt-1"><i data-feather="x"></i> {{ error }}</div>
  61.                                 {% endif %}
  62.                                 {% if success|default('')!='' %}
  63.                                     <div class="alert alert-success mt-1"><i data-feather="check"></i> {{ success }}</div>
  64.                                 {% endif %}
  65.                             </form>
  66.                         </div>
  67.                     </div>
  68.                     <!-- /Login v1 -->
  69.                 </div>
  70.             </div>
  71.         </div>
  72.     </div>
  73. </div>
  74. <!-- END: Content-->
  75. <!-- BEGIN: Vendor JS-->
  76. <script src="{{ asset('assets/app-assets/vendors/js/vendors.min.js') }}"></script>
  77. <!-- BEGIN Vendor JS-->
  78. <!-- BEGIN: Page Vendor JS-->
  79. <script src="{{ asset('assets/app-assets/vendors/js/forms/validation/jquery.validate.min.js') }}"></script>
  80. <!-- END: Page Vendor JS-->
  81. <!-- BEGIN: Theme JS-->
  82. <script src="{{ asset('assets/app-assets/js/core/app-menu.min.js') }}"></script>
  83. <script src="{{ asset('assets/app-assets/js/core/app.min.js') }}"></script>
  84. <!-- END: Theme JS-->
  85. <!-- BEGIN: Page JS-->
  86. <script src="{{ asset('assets/app-assets/js/scripts/pages/page-auth-login.js') }}"></script>
  87. <!-- END: Page JS-->
  88. <script>
  89.     $(window).on('load',  function(){
  90.         if (feather) {
  91.             feather.replace({ width: 14, height: 14 });
  92.         }
  93.     })
  94.     {% if app.user %}
  95.         window.location.href = '{{ path('panel_homepage') }}';
  96.     {% endif %}
  97.     {% if success|default('')!='' %}
  98.         setTimeout(function (){
  99.             window.location.href = '{{ path('app_login') }}';
  100.         },3000);
  101.     {% endif %}
  102. </script>
  103. </body>
  104. <!-- END: Body-->
  105. </html>