Explorar o código

Add some radio buttons to the form example

Joshua Kifer %!s(int64=3) %!d(string=hai) anos
pai
achega
ae2e8a8038
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      examples/form.rs

+ 2 - 0
examples/form.rs

@@ -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" }
                 }
             }