update dockerfile + wip passkey implementation

This commit is contained in:
2026-03-02 17:07:30 -05:00
parent 511e62b58c
commit 9e09110b16
12 changed files with 497 additions and 427 deletions
+28
View File
@@ -0,0 +1,28 @@
use dioxus::prelude::*;
use crate::components::basic::Button;
#[component]
pub fn PasskeyRegistrationButton() -> Element
{
rsx! {
Button{
text: "Register Passkey",
onclick: move |e| {
}
}
}
}
fn start_passkey_registration() {}
#[component]
pub fn PasskeyLoginButton() -> Element
{
rsx! {
Button{
text: "Login with Passkey"
}
}
}