1
0
Fork 0
forked from anton/matekasse

Inputfelder

This commit is contained in:
2000-Trek 2023-09-20 23:11:39 +02:00
parent 306cfead3c
commit f8e91b62df
2 changed files with 2 additions and 3 deletions

View file

@ -89,7 +89,7 @@ def create_app(test_config=None):
<title>Strichliste</title>
<p><a href="/list">user and tag list</a> | <a href="/documentation">Documentation</a></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"><input name="user" type="search" placeholder="Search for user"><button>Search</button></form>
<form action="/adduser" method="get"><button type="submit">Add User</button></form>
<br></br>
''' + text + '</html>'

View file

@ -3,7 +3,6 @@
<title>add user</title>
<p><a href="/list">user and tag list</a> | <a href="/documentation">Documentation</a></p>
<p>
Username:
<form action="/adduser/user" method="get"><input name="username"><input type="submit"></form>
<form action="/adduser/user" method="get"><input name="username" type="search" placeholder="Username"><button>Add user</button></form>
</p>
</html>