{% extends "base.html" %} {% block title %}{% trans %}Login{% endtrans %} – OnlineConvert{% endblock %} {% block content %}

{% trans %}Welcome back{% endtrans %}

{% trans %}Sign in to your account{% endtrans %}

{% if error %}
{{ error }}
{% endif %} {% with messages = get_flashed_messages(with_categories=true) %}{% for cat, msg in messages %}{% endfor %}{% endwith %}
{% if site_settings is defined and site_settings.get('google_client_id') %} {% trans %}Continue with Google{% endtrans %} {% endif %} {% if site_settings is defined and site_settings.get('microsoft_client_id') %} {% trans %}Continue with Microsoft{% endtrans %} {% endif %} {% if site_settings is defined and site_settings.get('apple_client_id') %} {% trans %}Continue with Apple{% endtrans %} {% endif %}
{% trans %}or sign in with email{% endtrans %}
{% if request.args.get('next') %} {% endif %}
{% trans %}Don't have an account?{% endtrans %} {% trans %}Create one free{% endtrans %}
{% endblock %}