docs: Fix mismatched brace in Authentication example (#1917)
This commit is contained in:
parent
8d01314253
commit
1da69da4dd
1 changed files with 1 additions and 1 deletions
|
|
@ -568,7 +568,7 @@ var Login = {
|
||||||
return m("form", [
|
return m("form", [
|
||||||
m("input[type=text]", {oninput: m.withAttr("value", Auth.setUsername), value: Auth.username}),
|
m("input[type=text]", {oninput: m.withAttr("value", Auth.setUsername), value: Auth.username}),
|
||||||
m("input[type=password]", {oninput: m.withAttr("value", Auth.setPassword), value: Auth.password}),
|
m("input[type=password]", {oninput: m.withAttr("value", Auth.setPassword), value: Auth.password}),
|
||||||
m("button[type=button]", {onclick: Auth.login, "Login")
|
m("button[type=button]", {onclick: Auth.login}, "Login")
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue