mStar
e802027236
Added a helper component for managing a list of strings. This component could, in theory, also be turned into a generic one for any type of data
18 lines
No EOL
441 B
Handlebars
18 lines
No EOL
441 B
Handlebars
<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> |