mirror of
https://github.com/bodyrep/DemoApp.git
synced 2026-01-25 06:32:11 +00:00
19 lines
507 B
Plaintext
19 lines
507 B
Plaintext
extends ../layout
|
|
block content
|
|
h1 New User
|
|
|
|
form(method="POST", action="/users")
|
|
p
|
|
label(for="username") Username<br />
|
|
input#username(name="username")
|
|
p
|
|
label(for="name") Name<br />
|
|
input#name(name="name")
|
|
p
|
|
label(for="password") Password<br />
|
|
input#password(type="password", name="password")
|
|
p
|
|
label(for="is_admin") Admin<br />
|
|
input#isadmin(type="checkbox", name="is_admin", unchecked)
|
|
p
|
|
input(type="submit", value="Create") |