diff --git a/views/register.moon b/views/register.moon index 4915bec..ef2c145 100644 --- a/views/register.moon +++ b/views/register.moon @@ -5,20 +5,16 @@ class LoginForm extends Widget form method: "POST", action: "/register", -> input type: "hidden", name: "csrf_token", value: @csrf_token - p -> - text "email address" + p "email address" input type: "text", name: "email" - p -> - text "password" + p "password" input type: "password", name: "password" - p -> - text "password" + p "password" input type: "password", name: "password_again" - p -> - text "name" + p "name" input type: "text", name: "name" br!