{% from 'common/macros.html' import infobox with context %} {% from 'common/macros.html' import subheader %} {%- extends 'base.html' -%} {%- block title -%}log in{%- endblock -%} {%- block content -%} {%- set welcome -%} Welcome back! No account yet? Sign up {%- endset -%} {{ subheader('Log in', welcome)}} {%- if request.args.get('error') -%} {{infobox(request.args.error, InfoboxKind.ERROR)}} {%- endif -%}
{%- endblock -%}