Skip to content
Snippets Groups Projects
Commit be2c09b6 authored by Jonas Leder's avatar Jonas Leder
Browse files

Merge branch 'beta'

parents f5243d7f f7165b06
Branches
Tags
No related merge requests found
#!/usr/bin/env python3 #!/usr/bin/env python3
from waitress import serve #Used as webserver (Production) from waitress import serve #Used as webserver (Production)
from flask import Flask, request, render_template, redirect, abort, Markup, session, make_response, jsonify #Used to prepare the dynamic pages from flask import Flask, request, redirect, make_response #Used to prepare the dynamic pages
import sqlite3 #Used to store the Data
import os #Used for getting the enviorement variables import os #Used for getting the enviorement variables
from itsdangerous import URLSafeSerializer #used for signing the cookies from itsdangerous import URLSafeSerializer #used for signing the cookies
import random #used for signing the cookies import random #used for signing the cookies
... ...
......
...@@ -154,6 +154,10 @@ table#t01 th { ...@@ -154,6 +154,10 @@ table#t01 th {
a#red { a#red {
color: red; color: red;
} }
button#small {
width: 30%;
}
@-webkit-keyframes fadein { @-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;} from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;} to {bottom: 30px; opacity: 1;}
... ...
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<div class="login-page"> <div class="login-page">
<div class="form"> <div class="form">
{{content | safe}} {{content | safe}}
<p><a href="/user/api">API</a> <a href="/">back to main page</a></p> <p><a href="/user/api"><button id="small">API</button></a>&#09;<a href="/"><button id="small">back</button></a></p>
</div> </div>
</div> </div>
<!-- ui-dialog --> <!-- ui-dialog -->
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment