meteor-autoform-materialize
Version:
Materialize theme for Autoform
19 lines (18 loc) • 463 B
HTML
<template name="quickForm_materialize">
{{#autoForm this.qfAutoFormContext}}
{{> afQuickFields}}
{{#if qfShouldRenderButton}}
<div class="row">
<div class="col s12">
<button type="submit" {{submitButtonAtts}}>
{{#with ../atts.buttonContent}}
{{this}}
{{else}}
Submit
{{/with}}
</button>
</div>
</div>
{{/if}}
{{/autoForm}}
</template>