<!DOCTYPE html>
<html lang="en-us" id="extr-page">
<head>
<meta charset="utf-8">
<title> FXLeaders CnC</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- #CSS Links -->
<!-- Basic Styles -->
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/font-awesome.min.css">
<!-- SmartAdmin Styles : Caution! DO NOT change the order -->
<link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-production-plugins.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-production.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/smartadmin-skins.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/fxl-cnc.style.css">
<!-- #FAVICONS -->
<link rel="shortcut icon" href="https://d1nsb2kebuy3pr.cloudfront.net/wp-content/themes/fxml/assets/images/favicon.ico" type="image/x-icon">
<link rel="icon" href="https://d1nsb2kebuy3pr.cloudfront.net/wp-content/themes/fxml/assets/images/favicon.ico" type="image/x-icon">
<!-- #GOOGLE FONT -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,300,400,700">
</head>
<body class="animated fadeInDown">
<header id="header" style="background: #22262e!important;">
<div id="logo-group">
<span id="logo" style="margin-top: 13px;">
<img src="https://d1nsb2kebuy3pr.cloudfront.net/wp-content/themes/fxml/assets/images/fxl-logo-hd.png" alt="SmartAdmin">
</span>
</div>
</header>
{% if app.request.hasPreviousSession %}
{% for type, messages in app.session.flashbag.all() %}
{% for message in messages %}
<div class="flash-{{ type }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
{% endif %}
<div id="main" class="full-height" role="main">
{% block fos_user_content %}
{% endblock fos_user_content %}
</div>
<!--================================================== -->
<!-- PACE LOADER - turn this on if you want ajax loading to show (caution: uses lots of memory on iDevices)-->
<script src="js/plugin/pace/pace.min.js"></script>
<!-- Link to Google CDN's jQuery + jQueryUI; fall back to local -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script> if (!window.jQuery) {
document.write('<script src="js/libs/jquery-3.2.1.min.js"><\/script>');
}</script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script> if (!window.jQuery.ui) {
document.write('<script src="js/libs/jquery-ui.min.js"><\/script>');
}</script>
<!-- IMPORTANT: APP CONFIG -->
<script src="js/app.config.js"></script>
<!-- JS TOUCH : include this plugin for mobile drag / drop touch events
<script src="js/plugin/jquery-touch/jquery.ui.touch-punch.min.js"></script> -->
<!-- BOOTSTRAP JS -->
<script src="js/bootstrap/bootstrap.min.js"></script>
<!-- JQUERY VALIDATE -->
<script src="js/plugin/jquery-validate/jquery.validate.min.js"></script>
<!-- JQUERY MASKED INPUT -->
<script src="js/plugin/masked-input/jquery.maskedinput.min.js"></script>
<!--[if IE 8]>
<h1>Your browser is out of date, please update your browser by going to www.microsoft.com/download</h1>
<![endif]-->
<!-- MAIN APP JS FILE -->
<script src="js/app.min.js"></script>
<script>
runAllForms();
$(function () {
// Validation
$("#login-form").validate({
// Rules for form validation
rules: {
email: {
required: true,
email: true
},
password: {
required: true,
minlength: 3,
maxlength: 20
}
},
// Messages for form validation
messages: {
email: {
required: 'Please enter your email address',
email: 'Please enter a VALID email address'
},
password: {
required: 'Please enter your password'
}
},
// Do not change code below
errorPlacement: function (error, element) {
error.insertAfter(element.parent());
}
});
});
</script>
</body>
</html>