templates/bundles/FOSUserBundle/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en-us" id="extr-page">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <title> FXLeaders CnC</title>
  6.         <meta name="description" content="">
  7.         <meta name="author" content="">
  8.         <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  9.         <!-- #CSS Links -->
  10.         <!-- Basic Styles -->
  11.         <link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css">
  12.         <link rel="stylesheet" type="text/css" media="screen" href="css/font-awesome.min.css">
  13.         <!-- SmartAdmin Styles : Caution! DO NOT change the order -->
  14.         <link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-production-plugins.min.css">
  15.         <link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-production.min.css">
  16.         <link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-skins.min.css">
  17.         <link rel="stylesheet" type="text/css" media="screen" href="css/fxl-cnc.style.css">
  18.         <!-- #FAVICONS -->
  19.         <link rel="shortcut icon" href="https://d1nsb2kebuy3pr.cloudfront.net/wp-content/themes/fxml/assets/images/favicon.ico" type="image/x-icon">
  20.         <link rel="icon" href="https://d1nsb2kebuy3pr.cloudfront.net/wp-content/themes/fxml/assets/images/favicon.ico" type="image/x-icon">
  21.         <!-- #GOOGLE FONT -->
  22.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,300,400,700">
  23.     </head>
  24.     <body class="animated fadeInDown">
  25.         <header id="header" style="background: #22262e!important;">
  26.             <div id="logo-group">
  27.                 <span id="logo" style="margin-top: 13px;">
  28.                     <img src="https://d1nsb2kebuy3pr.cloudfront.net/wp-content/themes/fxml/assets/images/fxl-logo-hd.png" alt="SmartAdmin"> 
  29.                 </span>
  30.             </div>
  31.         </header>
  32.         
  33.         {% if app.request.hasPreviousSession %}
  34.             {% for type, messages in app.session.flashbag.all() %}
  35.                 {% for message in messages %}
  36.                     <div class="flash-{{ type }}">
  37.                         {{ message }}
  38.                     </div>
  39.                 {% endfor %}
  40.             {% endfor %}
  41.         {% endif %}
  42.         
  43.         <div id="main" class="full-height" role="main">
  44.             {% block fos_user_content %}
  45.             {% endblock fos_user_content %}
  46.         </div>
  47.         <!--================================================== -->    
  48.         <!-- PACE LOADER - turn this on if you want ajax loading to show (caution: uses lots of memory on iDevices)-->
  49.         <script src="js/plugin/pace/pace.min.js"></script>
  50.         <!-- Link to Google CDN's jQuery + jQueryUI; fall back to local -->
  51.         <script src="//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  52.         <script> if (!window.jQuery) {
  53.         document.write('<script src="js/libs/jquery-3.2.1.min.js"><\/script>');
  54.         }</script>
  55.         <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
  56.         <script> if (!window.jQuery.ui) {
  57.         document.write('<script src="js/libs/jquery-ui.min.js"><\/script>');
  58.         }</script>
  59.         <!-- IMPORTANT: APP CONFIG -->
  60.         <script src="js/app.config.js"></script>
  61.         <!-- JS TOUCH : include this plugin for mobile drag / drop touch events         
  62.         <script src="js/plugin/jquery-touch/jquery.ui.touch-punch.min.js"></script> -->
  63.         <!-- BOOTSTRAP JS -->        
  64.         <script src="js/bootstrap/bootstrap.min.js"></script>
  65.         <!-- JQUERY VALIDATE -->
  66.         <script src="js/plugin/jquery-validate/jquery.validate.min.js"></script>
  67.         <!-- JQUERY MASKED INPUT -->
  68.         <script src="js/plugin/masked-input/jquery.maskedinput.min.js"></script>
  69.         <!--[if IE 8]>
  70.                 
  71.                 <h1>Your browser is out of date, please update your browser by going to www.microsoft.com/download</h1>
  72.                 
  73.         <![endif]-->
  74.         <!-- MAIN APP JS FILE -->
  75.         <script src="js/app.min.js"></script>
  76.         <script>
  77.         runAllForms();
  78.         $(function () {
  79.         // Validation
  80.         $("#login-form").validate({
  81.             // Rules for form validation
  82.             rules: {
  83.             email: {
  84.                 required: true,
  85.                 email: true
  86.             },
  87.             password: {
  88.                 required: true,
  89.                 minlength: 3,
  90.                 maxlength: 20
  91.             }
  92.             },
  93.             // Messages for form validation
  94.             messages: {
  95.             email: {
  96.                 required: 'Please enter your email address',
  97.                 email: 'Please enter a VALID email address'
  98.             },
  99.             password: {
  100.                 required: 'Please enter your password'
  101.             }
  102.             },
  103.             // Do not change code below
  104.             errorPlacement: function (error, element) {
  105.             error.insertAfter(element.parent());
  106.             }
  107.         });
  108.         });
  109.         </script>
  110.     </body>
  111. </html>