22 lines
515 B
Rust
22 lines
515 B
Rust
//! MNOTE 登录页面组件
|
|||
|
|
|
||
|
|
use leptos::prelude::*;
|
||
|
|
use super::layout::PageLayout;
|
||
|
|
|
||
|
|
/// 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>
|
||
|
|
}
|
||
|
|
}
|