mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-25 16:42:00 +00:00
18 lines
481 B
Plaintext
18 lines
481 B
Plaintext
extends ../layout
|
|
|
|
block content
|
|
h1 New workout
|
|
button#addExercise(type="button") Add Exercise
|
|
|
|
form#newworkout(method="POST", action="/workouts")
|
|
ul
|
|
li
|
|
label(for="title", value="UserID")<br />
|
|
input#title(name="User_ID", value=session.user._id)
|
|
li
|
|
label(for="datepicker", value="Date") Date<br />
|
|
input.datepicker(name="Date")
|
|
ul#exercises
|
|
|
|
button(type="submit", value="Save") Save
|