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

{% trans %}Create Your Account{% endtrans %}

{% trans %}Choose a plan and get started for free — upgrade anytime{% endtrans %}

{% if errors %}
{% for e in errors %}
{{ e }}
{% endfor %}
{% endif %}

1 {% trans %}Choose Your Plan{% endtrans %}

{% for plan in plans %} {% set plan_periods = plan_periods_map.get(plan.id, []) %} {% set yearly_period = plan_periods | selectattr('months', 'equalto', 12) | first %} {% endfor %}

2 {% trans %}Your Details{% endtrans %}

{% trans %}or continue with{% endtrans %}
{% if site_settings is defined and site_settings.get('google_client_id') %} {% trans %}Sign up with Google{% endtrans %} {% endif %} {% if site_settings is defined and site_settings.get('microsoft_client_id') %} {% trans %}Sign up with Microsoft{% endtrans %} {% endif %} {% if site_settings is defined and site_settings.get('apple_client_id') %} {% trans %}Sign up with Apple{% endtrans %} {% endif %}
{% trans %}Already have an account?{% endtrans %} {% trans %}Sign in{% endtrans %}
{% endblock %}