1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-30 00:00:13 +01:00
VILLASweb/app/templates/project/edit.hbs
2016-07-12 00:03:20 +02:00

15 lines
371 B
Handlebars

<h1>Edit project</h1>
<form id="project-edit-form" {{action 'saveEdit' on='submit'}} >
<p>
<label for="name">Name</label>
{{input id='name' placeholder='Enter project name' value=name}}
</p>
<button {{action 'cancelEdit'}}>Cancel</button>
<button type="submit">Save</button>
{{#if errorMessage}}
<p>{{errorMessage.message}}</p>
{{/if}}
</form>