42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>Hackerspace Warszawa Single Sign-on</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
<link href="/static/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link href="/static/css/signin.css" rel="stylesheet">
|
|
<link href="/static/css/authorize.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
<!-- Categories: success (green), info (blue), warning (yellow), danger (red) -->
|
|
{% if messages %}
|
|
<div class="container">
|
|
{% for category, message in messages %}
|
|
{% set category = 'info' if category == 'message' else category %}
|
|
<div class="alert alert-{{ category }} alert-dismissible" role="alert">
|
|
<!-- <strong>Title</strong> --> {{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<script src="/static/js/ie10-viewport-bug-workaround.js"></script>
|
|
</body>
|
|
</html>
|