import m from "mithril"; export const LoginForm = { view: function() { return m("form", { action: "/login" }, [ m("label", { for: "username" }, "Username"), m("input", { type: "text", name: "username" }), m("input", { type: "submit", value: "Login" }) ]); } };