mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
example: use onsubmit to showcase entry
This commit is contained in:
parent
28e9e4373e
commit
a939df677a
1 changed files with 3 additions and 1 deletions
|
@ -14,10 +14,12 @@ fn app(cx: Scope) -> Element {
|
|||
div {
|
||||
h1 { "Form" }
|
||||
form {
|
||||
oninput: move |ev| println!("{:?}", ev.values),
|
||||
onsubmit: move |ev| println!("Submitted {:?}", ev.values),
|
||||
oninput: move |ev| println!("Input {:?}", ev.values),
|
||||
input { r#type: "text", name: "username" }
|
||||
input { r#type: "text", name: "full-name" }
|
||||
input { r#type: "password", name: "password" }
|
||||
button { "Submit the form" }
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue