get_my/client/AdminMgmt/StoreMgmt/storeMgmtForm.html

17 lines
690 B
HTML
Raw Normal View History

<template name="storeMgmtForm">
<form id="storeForm" action="submit">
<div class="row">
<div class="col s8 m10 l10 input-field">
<input type="text" class="storeName" id="storeName" />
<label for="storeName">Name</label>
</div>
<div class="col s4 m2 l2 input-field">
{{#if $eq editModeStore false}}
<a class="waves-effect waves-light btn saveStoreMgmt green right">Add</a>
{{else}}
<a class="waves-effect waves-light btn editStoreMgmt blue right">Rename</a>
{{/if}}
</div>
</div>
</form>
</template>