mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-04-06 15:32:40 +00:00
12 lines
420 B
Python
12 lines
420 B
Python
from tornado.web import UIModule
|
|
|
|
|
|
class Login(UIModule):
|
|
def render(self, anchor_id, form_data=None):
|
|
if form_data is None:
|
|
form_data = (
|
|
('email', 'email_input', 'Email address', 'Enter email'),
|
|
('password', 'password_input', 'Password', 'Password'),
|
|
)
|
|
return self.render_string('module-login.html', anchor_id=anchor_id, form_data=form_data)
|