mirror of
https://github.com/sstent/node.git
synced 2026-01-25 14:42:00 +00:00
31 lines
1.8 KiB
Plaintext
31 lines
1.8 KiB
Plaintext
#container
|
|
#logo
|
|
img(src='/images/logo.png')
|
|
#display
|
|
include userbar
|
|
|
|
|
|
div
|
|
input(type='button', class='AddNeut', value='Add note Field', data-field='note_area', data-area='note_', data-limit='0', data-jsontag='activity.note')
|
|
input(type='button', class='AddNeut', value='Add exercise Field', data-field='exercise_area', data-area='exercise_', data-limit='0',data-jsontag='activity.exercise')
|
|
input(type='submit', id='save', value='Save')
|
|
|
|
|
|
form#myForm
|
|
ol(id='note_area')
|
|
li(class='note_T', style='display: none')
|
|
label Note
|
|
input(type='text', name='activity.note[]', value='Note', disabled='disabled')
|
|
a(style='cursor:pointer;color:blue;', onclick='this.parentNode.parentNode.removeChild(this.parentNode);') Remove Field
|
|
ol(id='exercise_area')
|
|
li(class='exercise_T', style='display: none')
|
|
label Exercise
|
|
input(type='text', name='activity.exercise[].name', value='Name', disabled='disabled')
|
|
input(type='text', name='activity.exercise[].sets', value='Sets', disabled='disabled', class='numericonly')
|
|
input(type='text', name='activity.exercise[].reps', value='Reps', disabled='disabled')
|
|
input(type='text', name='activity.exercise[x].weight', value='Weight', disabled='disabled')
|
|
a(style='cursor:pointer;color:blue;', onclick='this.parentNode.parentNode.removeChild(this.parentNode);') Remove Field
|
|
ul#employees
|
|
|
|
|