Skip to content

Instantly share code, notes, and snippets.

@alvincrespo
Last active October 22, 2017 18:53
Show Gist options
  • Save alvincrespo/469eb9c854c75fdb54ba653ab85ca91f to your computer and use it in GitHub Desktop.
Save alvincrespo/469eb9c854c75fdb54ba653ab85ca91f to your computer and use it in GitHub Desktop.
Composable Form Component
{{#ac-form as |form|}}
<h2>Sign in</h2>
{{form.field-email}}
{{form.field-password}}
<div class="actions">
<button type="submit">Sign in</button>
</div>
{{/ac-form}}
{{#ac-form as |form|}}
<h2>Add User</h2>
{{#form.field as |field|}}
{{#field.label}}First Name{{/field.label}}
{{field.input type="text"}}
{{/form.field}}
{{form.field-email}}
{{form.field-password}}
<div class="actions">
<button type="submit">Register User</button>
</div>
{{/ac-form}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment