mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-30 00:00:13 +01:00
15 lines
371 B
Handlebars
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>
|