{% extends "base.html" %} {% block title %} Complete Setup {% endblock title %} {% block og_title %} {{ _(server_name) }} {% endblock og_title %} {% block og_description %} {{ _("Complete your account setup for local servers") }} {% endblock og_description %} {% block main %}

🧙🏼‍♂️ {{ _("Complete Your Account Setup") }}

{% if plex_authenticated %} {% endif %} {% if local_servers %}

{{ _("Local Servers") }}

    {% for server in local_servers %}
  • {% if server.server_type == 'jellyfin' %} {% elif server.server_type == 'emby' %} {% else %} {% endif %}

    {{ server.name }}

    {{ server.server_type|title }}

  • {% endfor %}
{% endif %}

{{ _("Set Password for Local Servers") }}

{% if error %} {% endif %}
{% if form %}{{ form.hidden_tag() }}{% endif %}
{% if form and form.username.errors %} {% for error in form.username.errors %}

{{ error }}

{% endfor %} {% endif %}
{% if form and form.email.errors %} {% for error in form.email.errors %}

{{ error }}

{% endfor %} {% endif %}
{% if form and form.password.errors %} {% for error in form.password.errors %}

{{ error }}

{% endfor %} {% endif %}
{% if form and form.confirm_password.errors %} {% for error in form.confirm_password.errors %}

{{ error }}

{% endfor %} {% endif %}

{{ _("What happens next?") }}

  • • {{ _("Your Plex account is already set up and ready to use") }}
  • • {{ _("This password will be used to create accounts on your local servers") }}
  • • {{ _("You'll be redirected to the setup wizard to complete configuration") }}

{{ _("Only want to use Plex?") }} {{ _("Skip local servers") }}

{% endblock main %}