templates/UsersManagementBundle/Default/forgotPassword.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta content="width=device-width, initial-scale=1" name="viewport" />
  7.     <meta content="My Land Trading CRM" name="description" />
  8.     <meta content="Egyptforweb.com" name="author" />
  9.     <title> Forgot Password | {{ WEB_SITE_NAME }} </title>
  10.     <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  11.     <!-- BEGIN GLOBAL MANDATORY STYLES -->
  12.     <link href="https://fonts.googleapis.com/css?family=Cairo" rel="stylesheet">
  13.     <link type="text/css" rel="stylesheet" href="{{asset('bundles/global/plugins/fonts.googleapis.css')}}" />
  14.     <link type="text/css" rel="stylesheet" href="{{asset('bundles/global/plugins/font-awesome/css/font-awesome.min.css')}}" />
  15.     <link type="text/css" rel="stylesheet" href="{{asset('bundles/global/plugins/simple-line-icons/simple-line-icons.min.css')}}" />
  16.     <link type="text/css" rel="stylesheet" href="{{asset('bundles/global/plugins/bootstrap/css/bootstrap.min.css')}}" />
  17.     <link type="text/css" rel="stylesheet" href="{{asset('bundles/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css')}}" />
  18.     <!-- END GLOBAL MANDATORY STYLES -->
  19.     {#<!-- BEGIN THEME GLOBAL STYLES -->#}
  20.     <link type="text/css" rel="stylesheet" href="{{asset('bundles/global/css/components.min.css')}}" />
  21.     <link type="text/css" rel="stylesheet" href="{{asset('bundles/global/css/plugins.min.css')}}" />
  22.     {#<!-- END THEME GLOBAL STYLES -->#}
  23.     <!-- BEGIN PAGE LEVEL STYLES -->
  24.     <link href="{{asset('bundles/pages/css/login.min.css')}}" rel="stylesheet" type="text/css" />
  25.     <link href="{{asset('bundles/efw.css')}}" rel="stylesheet" type="text/css" />
  26.     <!-- END PAGE LEVEL STYLES -->
  27. </head>
  28. <body class="login login2">
  29. <div class="logo">
  30.     <img src="{{asset('bundles/global/img/logo-big.png')}}" alt="" />
  31. </div>
  32. <div class="content">
  33.     <form action="{{ path('ForgotPassword_Path') }}" method="post" role="form" class="login-form" name="log_in">
  34.         <h3 class="form-title font-green">Forgot Password</h3>
  35.         {% if error is defined %}
  36.             <div class="alert alert-danger">
  37.                 <a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>
  38.                 <span>
  39.                     {{ error }}
  40.                 </span>
  41.             </div>
  42.         {% endif %}
  43.         {# Email #}
  44.         <div class="form-group">
  45.             <!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
  46.             <p>Please write your username and email, to send you the new password</p>
  47.             {# Username #}
  48.             <div class="form-group">
  49.                 <!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
  50.                 <label class="control-label visible-ie8 visible-ie9">Username</label>
  51.                 <div class="input-icon">
  52.                     <i class="fa fa-user"></i>
  53.                     <input id="username" class="form-control form-control-solid placeholder-no-fix" type="text" autocomplete="off" placeholder="Username" name="username" required/>
  54.                 </div>
  55.             </div>
  56.             <div class="form-group">
  57.                 <!--ie8, ie9 does not support html5 placeholder, so we just show field title for that-->
  58.                 <label class="control-label visible-ie8 visible-ie9">Email</label>
  59.                 <div class="input-icon">
  60.                     <i class="fa fa-envelope"></i>
  61.                     <input id="email" class="form-control form-control-solid placeholder-no-fix" type="email" autocomplete="off" placeholder="Email" name="email" required/>
  62.                 </div>
  63.             </div>
  64.         </div>
  65.         {#  submit #}
  66.         <div class="form-actions">
  67.             <button type="submit" class="btn green uppercase">Send </button>
  68.             <a href="{{ path('Login_Path') }}" id="forget-password" class="forget-password">Login</a>
  69.         </div>
  70.     </form>
  71. </div>
  72. <div class="copyright">MyLand © 2018. All rights reserved.</div>
  73. <script>
  74.     if(self == top)
  75.         document.documentElement.style.display = 'block';
  76.     else
  77.         top.location = self.location;
  78. </script>
  79. <!-- BEGIN CORE PLUGINS -->
  80. <script type="text/javascript" src="{{asset('bundles/global/plugins/jquery.min.js')}}"></script>
  81. <script type="text/javascript" src="{{asset('bundles/global/plugins/bootstrap/js/bootstrap.min.js')}}"></script>
  82. <script type="text/javascript" src="{{asset('bundles/global/plugins/js.cookie.min.js')}}"></script>
  83. <script type="text/javascript" src="{{asset('bundles/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js')}}"></script>
  84. <script type="text/javascript" src="{{asset('bundles/global/plugins/jquery.blockui.min.js')}}"></script>
  85. <script type="text/javascript" src="{{asset('bundles/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js')}}"></script>
  86. <!-- END CORE PLUGINS -->
  87. <script type="text/javascript">
  88.     //        $(document).ready(function()
  89.     //        {
  90.     //        });
  91. </script>
  92. </body>
  93. </html>