Files
mnote/rust/crates/mnote-web/src/ssr/pages/auth.rs
T

22 lines
515 B
Rust
Raw Normal View History

2026-04-29 12:24:44 +08:00
//! MNOTE 登录页面组件
use super::layout::PageLayout;
2026-04-29 14:36:24 +08:00
use leptos::prelude::*;
2026-04-29 12:24:44 +08:00
/// MNOTE 登录页面
///
/// 当 legacy compat 关闭时由 `auth_entry` 路由使用。
#[component]
pub fn AuthPage() -> impl IntoView {
view! {
<PageLayout current_nav="home">
<section class="mnote-auth">
<h1>MNOTE 登录</h1>
<p>
"此页面由 mnote-web gateway 提供。"
</p>
</section>
</PageLayout>
}
}