<!DOCTYPE html>
<html class="loading" lang="tr" data-textdirection="ltr">
<!-- BEGIN: Head-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=0,minimal-ui">
<title>Şifremi unuttum</title>
<link rel="apple-touch-icon" href="{{ asset('assets/f1.webp') }}">
<link rel="shortcut icon" type="image/x-icon" href="{{ asset('assets/f1.webp') }}">
<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">
<!-- BEGIN: Vendor CSS-->
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/vendors/css/vendors.min.css') }}">
<!-- END: Vendor CSS-->
<!-- BEGIN: Theme CSS-->
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/bootstrap.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/bootstrap-extended.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/colors.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/components.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/themes/semi-dark-layout.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/themes/bordered-layout.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/themes/semi-dark-layout.min.css') }}">
<!-- BEGIN: Page CSS-->
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/core/menu/menu-types/vertical-menu.min.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/plugins/forms/form-validation.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/app-assets/css/pages/page-auth.min.css') }}">
<!-- END: Page CSS-->
<!-- BEGIN: Custom CSS-->
<link rel="stylesheet" type="text/css" href="{{ asset('assets/assets/css/style.css') }}">
<!-- END: Custom CSS-->
</head>
<!-- END: Head-->
<!-- BEGIN: Body-->
<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">
<!-- BEGIN: Content-->
<div class="app-content content ">
<div class="content-overlay"></div>
<div class="header-navbar-shadow"></div>
<div class="content-wrapper">
<div class="content-header row">
</div>
<div class="content-body"><div class="auth-wrapper auth-v1 px-2">
<div class="auth-inner py-2">
<!-- Login v1 -->
<div class="card mb-0">
<div class="card-body">
<a href="javascript:void(0);" class="brand-logo text-center d-block">
<img src="{{ asset('assets/l1.webp') }}" alt="RV Yönetim Panel" class="mr-2 w-75">
<h2 class="brand-text " style="margin-top: 10px;">Web Yönetim Paneli</h2>
</a>
<h4 class="card-title mb-1">Şifreni mi unuttun?</h4>
<p class="card-text mb-2">Şifreni yenilemek için kayıtlı e-posta bilgilerini gir.</p>
<form class="auth-login-form mt-2" method="post">
<div class="form-group">
<label class="form-label" for="login-email" style="font-size: 13px; font-weight: bold;">Kayıtlı E-Posta:</label>
<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/>
</div>
<button class="btn btn-primary btn-block" tabindex="4">Şifremi Yenile</button>
{% if error|default('')!='' %}
<div class="alert alert-danger mt-1"><i data-feather="x"></i> {{ error }}</div>
{% endif %}
{% if success|default('')!='' %}
<div class="alert alert-success mt-1"><i data-feather="check"></i> {{ success }}</div>
{% endif %}
</form>
</div>
</div>
<!-- /Login v1 -->
</div>
</div>
</div>
</div>
</div>
<!-- END: Content-->
<!-- BEGIN: Vendor JS-->
<script src="{{ asset('assets/app-assets/vendors/js/vendors.min.js') }}"></script>
<!-- BEGIN Vendor JS-->
<!-- BEGIN: Page Vendor JS-->
<script src="{{ asset('assets/app-assets/vendors/js/forms/validation/jquery.validate.min.js') }}"></script>
<!-- END: Page Vendor JS-->
<!-- BEGIN: Theme JS-->
<script src="{{ asset('assets/app-assets/js/core/app-menu.min.js') }}"></script>
<script src="{{ asset('assets/app-assets/js/core/app.min.js') }}"></script>
<!-- END: Theme JS-->
<!-- BEGIN: Page JS-->
<script src="{{ asset('assets/app-assets/js/scripts/pages/page-auth-login.js') }}"></script>
<!-- END: Page JS-->
<script>
$(window).on('load', function(){
if (feather) {
feather.replace({ width: 14, height: 14 });
}
})
{% if app.user %}
window.location.href = '{{ path('panel_homepage') }}';
{% endif %}
{% if success|default('')!='' %}
setTimeout(function (){
window.location.href = '{{ path('app_login') }}';
},3000);
{% endif %}
</script>
</body>
<!-- END: Body-->
</html>