diff --git a/aula/Login/routes.py b/aula/Login/routes.py index fcc448b..8a7ff35 100644 --- a/aula/Login/routes.py +++ b/aula/Login/routes.py @@ -18,11 +18,6 @@ def home(): return render_template('home.html', posts=posts) -@Login.route("/about") -def about(): - return render_template('about.html', title='About') - - @Login.route("/login", methods=['GET', 'POST']) def login(): if current_user.is_authenticated: diff --git a/aula/templates/about.html b/aula/templates/about.html deleted file mode 100644 index bc550eb..0000000 --- a/aula/templates/about.html +++ /dev/null @@ -1,30 +0,0 @@ -{% extends "layout.html" %} -{% block content %} -
Dette er UIS-prototypen bragt til dig af UIS-holdet 2021/2022:
-I kan registrere nye kundekonti, men medarbejderkonti skal indtastes ved at foretage jeres ændringer i DML-scriptet schema_ins.sql. For at logge ind har vi oprettet nogle testkonti. Kunde-login kan tilgås ved hjælp af et kunde-cpr i intervallerne 5001 til 5007 med adgangskoden "UIS" med store bogstaver. Medarbejder-login kan tilgås ved hjælp af medarbejder-id 6001..6007 og samme adgangskode.
-For at tilføje flere eksempeldata skal du foretage dine ændringer i DML-scriptet schema_ins.sql.
-Prototypen er vertikal. Vi har implementeret nogle funktioner, men projektet er ufuldstændigt. Prototypen giver et udgangspunkt for jeres arbejde.
- -EN:
- -You can register new customer accounts, but employee accounts must be entered by making your changes to the DML-script schema_ins.sql. To log in we have created some test accounts. The customer login can be accesed using a customer cpr in ranges 5001 to 5007 with the password 'UIS' in uppercase. The employee login can be accessed using employee id 6001..6007 and the same password.
-To add more sample data make your changes to the DML-script schema_ins.sql.
-The prototype is vertical. We have implemented some functions and not completed. The prototype provides a starting point for your work.
-AL/PR 20220504
-{% endblock content %} -