1
0
mirror of https://github.com/moepman/bk-dss synced 2024-11-17 16:09:10 +01:00

Use Bootstrap.

This commit is contained in:
Markus 2015-06-16 22:26:10 +02:00
parent 691346e75a
commit 67117ebf3c
3 changed files with 12 additions and 2 deletions

View File

@ -8,3 +8,7 @@ TBA
* py-flask >= 0.10 * py-flask >= 0.10
* py-flask-wtf >= 0.10 * py-flask-wtf >= 0.10
## Misc
Source code is under MIT license, powered by Flask and Bootstrap.

5
static/css/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -2,13 +2,14 @@
<html> <html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<link href="static/css/bootstrap.min.css" type="text/css" rel="stylesheet">
<link href="static/css/style.css" type="text/css" rel="stylesheet"> <link href="static/css/style.css" type="text/css" rel="stylesheet">
<title>Binary Kitchen: LDAP User Administration Portal</title> <title>Binary Kitchen: LDAP User Administration Portal</title>
</head> </head>
<body> <body>
<header> <header>
<img src="static/img/binary_kitchen.svg" alt="Binary Kitchen"> <img src="static/img/binary_kitchen.svg" alt="Binary Kitchen">
<h1>User Self-Service Portal</h1> <h1>LDAP User Administration Portal</h1>
</header> </header>
<nav> <nav>
{% block navigation %} {% block navigation %}
@ -19,7 +20,7 @@
{% endblock %} {% endblock %}
</main> </main>
<footer> <footer>
<p>Binary Kitchen: LDAP User Administration Portal, <a href="https://github.com/moepman/bk-luap">source code</a> under MIT license.</p> <p>Binary Kitchen: LDAP User Administration Portal, <a href="https://github.com/moepman/bk-luap">source code</a> under MIT license, powered by <a href="http://flask.pocoo.org/">Flask</a> and <a href="http://getbootstrap.com/">Bootstrap</a></p>
</footer> </footer>
</body> </body>
</html> </html>