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

CLI Authenticated

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

{% else if error.is_some() %}
{% call icons::x_circle("h-10 w-10 text-red-600 dark:text-red-400") %}

Authentication Failed

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

CLI Authentication

Processing authentication…

{% endif %}
{% endblock %}