12345678910111213141516171819202122232425 |
- //! XSS Safety
- //!
- //! This example proves that Dioxus is safe from XSS attacks.
- use dioxus::prelude::*;
- fn main() {
- dioxus::launch(app);
- }
- fn app() -> Element {
- let mut contents = use_signal(|| String::from("<script>alert(\"hello world\")</script>"));
- rsx! {
- div {
- h1 {"Dioxus is XSS-Safe"}
- h3 { "{contents}" }
- input {
- value: "{contents}",
- r#type: "text",
- oninput: move |e| contents.set(e.value()),
- }
- }
- }
- }
|