mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-26 22:20:19 +00:00
Add some radio buttons to the form example
This commit is contained in:
parent
ab4e37fbf2
commit
ae2e8a8038
1 changed files with 2 additions and 0 deletions
|
@ -20,6 +20,8 @@ fn app(cx: Scope) -> Element {
|
|||
input { r#type: "text", name: "username" }
|
||||
input { r#type: "text", name: "full-name" }
|
||||
input { r#type: "password", name: "password" }
|
||||
input { r#type: "radio", name: "color", value: "red" }
|
||||
input { r#type: "radio", name: "color", value: "blue" }
|
||||
button { r#type: "submit", value: "Submit", "Submit the form" }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue