systemprompt_cli/commands/cloud/templates/mod.rs
1//! Static HTML pages served by the local callback server during cloud flows.
2//!
3//! Re-exports the checkout pages (waiting, success, error) and the OAuth
4//! login pages (success, error) rendered in the user's browser while the CLI
5//! waits on a redirect from the cloud backend.
6
7mod checkout;
8mod oauth;
9
10pub use checkout::{
11 ERROR_HTML as CHECKOUT_ERROR_HTML, SUCCESS_HTML as CHECKOUT_SUCCESS_HTML, WAITING_HTML,
12};
13pub use oauth::{ERROR_HTML as AUTH_ERROR_HTML, SUCCESS_HTML as AUTH_SUCCESS_HTML};