linstrom/frontend-reactive/app/components/auth/registration-form.hbs

18 lines
441 B
Handlebars
Raw Normal View History

<div class="registration-form">
<p class="registration-form-username">{{this.username}}</p>
<label>
Displayname
<Input @type="text" @value={{this.displayname}} placeholder="Displayname" />
</label>
<label>
Description
<Input
@type="text"
@value={{this.description}}
placeholder="Account description"
/>
</label>
<Util::StringArray @list={{this.gender}} />
<p>{{this.extracted}}</p>
</div>