mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-01-29 03:24:22 +01:00
13 lines
332 B
Python
13 lines
332 B
Python
from .template import WebpageController
|
|
|
|
|
|
class SessionController(WebpageController):
|
|
def loginAction(self):
|
|
self.serve_template("login.html", **self.template_variables())
|
|
|
|
def processLoginAction(self):
|
|
self.send_redirect("/")
|
|
|
|
def logoutAction(self):
|
|
self.send_redirect("logout happening here")
|