{% extends "base.html" %} {% import "partials/icons.html" as icons %} {% block title %}Brewlog ยท CLI Authentication{% endblock %} {% block content %}
{% if token.is_some() %}
{{ icons::check_circle("h-10 w-10 text-success") }}

CLI Authenticated

Your CLI has been authenticated successfully. You can close this window and return to the terminal.

{% elif error.is_some() %}
{{ icons::x_circle("h-10 w-10 text-error") }}

Authentication Failed

{{ error.as_ref().unwrap() }}
{% else %}
{{ icons::spinner("h-10 w-10") }}

CLI Authentication

Processing authentication…

{% endif %}
{% endblock %}