Updated UI
This commit is contained in:
parent
a132e0ff85
commit
e8db4d2862
|
@ -16,6 +16,9 @@ Windows
|
||||||
``` ./windows-start.sh ```
|
``` ./windows-start.sh ```
|
||||||
|
|
||||||
|
|
||||||
|
# Images
|
||||||
|
![1 Default starting interface. ](images/pic1.png)
|
||||||
|
|
||||||
# Notes
|
# Notes
|
||||||
* Make sure to change the port in the start script as needed.
|
* Make sure to change the port in the start script as needed.
|
||||||
* You can change the login route by changing the 'LOGIN_PATH' variable in the __init__.py file in the 'core' directory.
|
* You can change the login route by changing the 'LOGIN_PATH' variable in the __init__.py file in the 'core' directory.
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 407 KiB |
|
@ -5,10 +5,13 @@
|
||||||
{% block header_meta %}
|
{% block header_meta %}
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="author" content="{{post.meta_author}}">
|
|
||||||
<meta name="copyright" content="CC0">
|
{% if post %}
|
||||||
<meta name="description" content="{{post.meta_description}}">
|
<meta name="author" content="{{post.meta_author}}">
|
||||||
<meta name="keywords" content="{{post.meta_keywords}}">
|
<meta name="copyright" content="CC0">
|
||||||
|
<meta name="description" content="{{post.meta_description}}">
|
||||||
|
<meta name="keywords" content="{{post.meta_keywords}}">
|
||||||
|
{% endif %}
|
||||||
<meta name="robots" content="index,follow">
|
<meta name="robots" content="index,follow">
|
||||||
{% block header_meta_additional %}
|
{% block header_meta_additional %}
|
||||||
{% endblock header_meta_additional %}
|
{% endblock header_meta_additional %}
|
||||||
|
@ -51,7 +54,16 @@
|
||||||
</head>
|
</head>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
{% block body_header %}
|
||||||
|
<img id="bg" src="{{ url_for('static', filename='imgs/backgrounds/background.jpg')}}" alt="{{title}} Background Logo" />
|
||||||
|
{% include "body-header.html" %}
|
||||||
|
|
||||||
|
{% block body_header_additional %}
|
||||||
|
{% endblock body_header_additional%}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container bg-dark" style="height: 80vh;">
|
||||||
<!-- System flashed messages! -->
|
<!-- System flashed messages! -->
|
||||||
{% with messages = get_flashed_messages(with_categories=true) %}
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
||||||
{% if messages %}
|
{% if messages %}
|
||||||
|
@ -63,16 +75,6 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
|
|
||||||
|
|
||||||
{% block body_header %}
|
|
||||||
<img id="bg" src="{{ url_for('static', filename='imgs/backgrounds/background.jpg')}}" alt="{{title}} Background Logo" />
|
|
||||||
{% include "body-header.html" %}
|
|
||||||
|
|
||||||
{% block body_header_additional %}
|
|
||||||
{% endblock body_header_additional%}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div id="page-alert-zone" class="col">
|
<div id="page-alert-zone" class="col">
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue