1
0
Fork 0
forked from anton/matekasse

base.html

This commit is contained in:
2000-Trek 2023-06-23 23:12:13 +02:00
parent 45d448dad9
commit e02a943ff0
2 changed files with 9 additions and 0 deletions

View file

@ -70,6 +70,7 @@ def list():
window.location="http://matekasse.server.c3h/list" window.location="http://matekasse.server.c3h/list"
}); });
</script> </script>
{% extends 'base.html' %}
<p>1 Credit = 1,50 Euro</p> <p>1 Credit = 1,50 Euro</p>
<form action="/list/user" method="get"> Search for User: <input name="user"><input type="submit"></form> <form action="/list/user" method="get"> Search for User: <input name="user"><input type="submit"></form>
<form action="/adduser" method="get"><button type="submit">Add User</button></form> <form action="/adduser" method="get"><button type="submit">Add User</button></form>

8
templates/base.html Normal file
View file

@ -0,0 +1,8 @@
<!DOCTYPE html>
<html lang="en">
<body>
<nav>
<p><a href="/list">user and tag list</a> | <a href="/documentation">Documentation</a></p>
</nav>
</body>
</html>