<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Flight CMS | {% block pagetitle %}{% endblock %}</title>
{% block stylesheets %}{% endblock %}
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="stylesheet" href="/takeflight/adminlte/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="/takeflight/adminlte/dist/css/AdminLTE.min.css">
<link rel="stylesheet" href="/takeflight/css/flightcms.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="hold-transition login-page">
<div class="login-box">
<div class="login-logo text-center">
<img src="/takeflight/flight-logo-white.png" alt="`Flight CMS logo" width="216" height="110" class="img-responsive center-align" />
</div><!-- /.login-logo -->
{% for flash_message in app.session.flashbag.get('success') %}
<div class="alert alert-success">{{ flash_message }}</div>
{% endfor %}
{% for flash_message in app.session.flashbag.get('error') %}
<div class="alert alert-danger">{{ flash_message }}</div>
{% endfor %}
{% for flash_message in app.session.flashbag.get('notice') %}
<div class="alert alert-notice">{{ flash_message }}</div>
{% endfor %}
{% for flash_message in app.session.flashbag.get('warning') %}
<div class="alert alert-warning">{{ flash_message }}</div>
{% endfor %}
{% block body %}{% endblock %}
</div><!-- /.login-box -->
<script src="/takeflight/adminlte/plugins/jQuery/jQuery-2.1.4.min.js"></script>
<script src="/takeflight/adminlte/bootstrap/js/bootstrap.min.js"></script>
{% block javascripts %}{% endblock %}
</body>
</html>