get_my/client/AdminMgmt/LocationMgmt/locMgmtForm.html

17 lines
748 B
HTML
Raw Normal View History

<template name="locMgmtForm">
<form action="" id="locInputForm">
<div class="row">
<div class="col s8 m10 l10 input-field">
<input type="text" class="locNameInp" id="locNameInp" style="{{#if $eq locNameErr true}}border: 2px solid red;{{/if}}" />
<label for="locNameInp">Name*</label>
</div>
<div class="col s4 m2 l2 input-field">
{{#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>
</div>
</form>
</template>