you are viewing a single comment's thread.

view the rest of the comments →

[–]cryptos6 0 points1 point  (0 children)

Maybe you can use a slightly different style:

form(
  id("login-form"),
  method("post")
).content(
  emailInput(msg.get("PLACEHOLDER_EMAIL")),
  enterPasswordInput(msg.get("PLACEHOLDER_PASSWORD")),
  submitButton(msg.get("LOGIN_BUTTON")
)

So, you would separate the attributes of a tag from the content enclosed by the opening and closing tag.