webapi make form more userfriendly

This commit is contained in:
danfai 2022-03-08 20:25:46 +01:00
parent 9357eb9a53
commit ed5b4501ba

View File

@ -13,7 +13,9 @@ class WebAPI(resource.Resource):
# return a simple form for browsers # return a simple form for browsers
return (b"<!DOCTYPE html><html><head><meta charset='utf-8'>" return (b"<!DOCTYPE html><html><head><meta charset='utf-8'>"
b"<title></title></head><body>" b"<title></title></head><body>"
b"<form method='POST'><input name='room'><input name='url'></form>") b"<form method='POST'><label for='room'>Room:</label><input name='room'><br/>"
b"<label for='url'>URL:</label><input name='url'><br/>"
b"<input type='submit'/></form></body></html>")
def render_POST(self, request): def render_POST(self, request):
url = "" url = ""