LoL windoos
This commit is contained in:
parent
eba3fc5f07
commit
cc62911509
3 changed files with 35 additions and 24 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -32,8 +32,7 @@ var/
|
||||||
pip-log.txt
|
pip-log.txt
|
||||||
pip-delete-this-directory.txt
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
# Unit test / coverage reports
|
# Unit test / coverage reportshtmlcov/
|
||||||
htmlcov/
|
|
||||||
.tox/
|
.tox/
|
||||||
.coverage
|
.coverage
|
||||||
.cache
|
.cache
|
||||||
|
@ -52,3 +51,11 @@ docs/_build/
|
||||||
|
|
||||||
# PyBuilder
|
# PyBuilder
|
||||||
target/
|
target/
|
||||||
|
|
||||||
|
# PyCharm
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# ConfigFile
|
||||||
|
app/config.py
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
{% extends "layout.html" %}
|
{% extends "layout.html" %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<section class="container">
|
<section class="container">
|
||||||
<div class="login">
|
<div class="login">
|
||||||
<h1>Login with Zeus-Account</h1>
|
<h1>Login with Zeus-Account</h1>
|
||||||
<form method="post" action="{{ url_for('home') }}">
|
<form method="post" action="{{ url_for('home') }}">
|
||||||
<p><input type="text" name="login" value="" placeholder="Zeus e-mail "></p>
|
<p><input type="text" name="login" value="" placeholder="Zeus e-mail "></p>
|
||||||
<p><input type="password" name="password" value="" placeholder="Password"></p>
|
<p><input type="password" name="password" value="" placeholder="Password"></p>
|
||||||
<p class="remember_me">
|
<p class="remember_me">
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" name="remember_me" id="remember_me">
|
<input type="checkbox" name="remember_me" id="remember_me">
|
||||||
Remember me on this computer
|
Remember me on this computer
|
||||||
</label>
|
</label>
|
||||||
</p>
|
</p>
|
||||||
<p class="submit"><input type="submit" name="commit" value="Login"></p>
|
<p class="submit"><input type="submit" name="commit" value="Login"></p>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="login-help">
|
<div class="login-help">
|
||||||
<p>Forgot your password? <a href="{{ url_for('home') }}">Click here to reset it</a>.</p>
|
<p>Forgot your password? <a href="{{ url_for('home') }}">Click here to reset it</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
{% endblock %}
|
{% endblock %}
|
10
db/muhscheme
10
db/muhscheme
|
@ -1,14 +1,18 @@
|
||||||
ORDERS
|
ORDERS
|
||||||
=======
|
=======
|
||||||
OrderID | Courier | Locatie | Starttijdstip | Eindtijstip | Comment
|
OrderID | User | LocatieID | Starttijdstip | Eindtijstip | Comment
|
||||||
|
|
||||||
Item
|
Item
|
||||||
=====
|
=====
|
||||||
ItemID | OrderID | User | Food
|
ItemID | OrderID | User | FoodID
|
||||||
|
|
||||||
Locaties
|
Locaties
|
||||||
======
|
======
|
||||||
LocatieID | Naam | Adres | Telefoonnummer
|
LocatieID | Naam | Adres | Coordinaten(2.0) | Website
|
||||||
|
|
||||||
|
LocatieMetaData
|
||||||
|
===============
|
||||||
|
LocatieID | Key | Value
|
||||||
|
|
||||||
Food
|
Food
|
||||||
=====
|
=====
|
||||||
|
|
Loading…
Reference in a new issue