panel/views/register.moon

23 lines
501 B
Plaintext
Raw Normal View History

2015-01-05 22:22:26 +00:00
import Widget from require "lapis.html"
class LoginForm extends Widget
content: =>
form method: "POST", action: "/register", ->
input type: "hidden", name: "csrf_token", value: @csrf_token
p "email address"
2015-01-05 22:22:26 +00:00
input type: "text", name: "email"
p "password"
2015-01-05 22:22:26 +00:00
input type: "password", name: "password"
p "password"
2015-01-05 22:22:26 +00:00
input type: "password", name: "password_again"
p "name"
2015-01-05 22:22:26 +00:00
input type: "text", name: "name"
br!
input type: "submit"