{% import "bootstrap/wtf.html" as wtf %}
{% block content %}
Scan QR Code
Manual Login
{{ form.hidden_tag() }} {{ form.username(placeholder="SAASPASS ID") }} {{ form.otp(placeholder="One-time password") }}
Login
Not registered?
Create an account
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for message in messages %} {% if "Error" not in message[1]: %}
{{ message[1] }}
{% endif %} {% if "Error" in message[1]: %}
{{ message[1] }}
{% endif %} {% endfor %} {% endif %} {% endwith %}
{% endblock %}