mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-01-23 08:40:21 +01:00
10 lines
265 B
Python
10 lines
265 B
Python
from .template import WebpageController
|
|
|
|
|
|
class SessionController(WebpageController):
|
|
def loginAction(self):
|
|
self.serve_template("login.html", **self.template_variables())
|
|
|
|
def logoutAction(self):
|
|
self.send_redirect("logout happening here")
|