2022-08-15 18:07:39 -05:00
|
|
|
<template name="locMgmtForm">
|
2022-08-23 13:41:21 -05:00
|
|
|
<form action="" id="locInputForm">
|
|
|
|
|
<div class="row">
|
2022-08-26 11:18:18 -05:00
|
|
|
<div class="col s8 m10 l10 input-field">
|
2022-08-23 13:41:21 -05:00
|
|
|
<input type="text" class="locNameInp" id="locNameInp" style="{{#if $eq locNameErr true}}border: 2px solid red;{{/if}}" />
|
|
|
|
|
<label for="locNameInp">Name*</label>
|
|
|
|
|
</div>
|
2022-08-26 11:18:18 -05:00
|
|
|
<div class="col s4 m2 l2 input-field">
|
2022-08-23 13:41:21 -05:00
|
|
|
{{#if $eq locEditMode false}}
|
|
|
|
|
<a class="waves-effect waves-light btn saveLocMgmt green right">Add</a>
|
|
|
|
|
{{else}}
|
|
|
|
|
<a class="waves-effect waves-light btn editLocMgmt blue right">Rename</a>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
2022-08-15 18:07:39 -05:00
|
|
|
</div>
|
2022-08-23 13:41:21 -05:00
|
|
|
</form>
|
2022-08-15 18:07:39 -05:00
|
|
|
</template>
|