{% extends "base.html" %} {% block title %}Admin credentials - {{ app_name }} - Hop3 Dashboard{% endblock %} {% block content %}

Admin credentials

The account Hop3 created when it installed {{ app_name }}.

{% if cred %}
{% if url %}
Sign-in URL
{{ url }}
{% endif %} {% if cred.username %}
Username{% if cred.login == "username" %} sign in with this{% endif %}
{{ cred.username }}
{% endif %} {% if cred.email %}
Email{% if cred.login == "email" %} sign in with this{% endif %}
{{ cred.email }}
{% endif %}
Password
{{ cred.password }}

This is the initial password{% if cred.created_at %}, set on {{ cred.created_at.strftime("%Y-%m-%d") }}{% endif %}. It is stale if it has since been changed inside the app.

Also available from the CLI: hop3 app credentials --app {{ app_name }}

{% else %}

{{ app_name }} has no Hop3-managed admin credential. It either manages its own accounts or was set up before Hop3 generated them.

{% endif %}
← Back to {{ app_name }}
{% endblock %}