Good progress on styling post-registration form
This commit is contained in:
parent
8b03454d6f
commit
1fb924f59c
17 changed files with 234 additions and 85 deletions
|
@ -1,11 +1,18 @@
|
|||
<div class="mail-entry {{@wrapper-classes}}">
|
||||
<label>
|
||||
Email
|
||||
<Input @type="text" @value={{this.args.data.mail}} placeholder="Email address" {{on "change" (fn this.checkMail)}}/>
|
||||
<!--<div class="filling-spacer"/>-->
|
||||
<Input
|
||||
class="mail-input {{if this.mailOk "mail-input-ok" "mail-input-error"}} {{@input-classes}}"
|
||||
@type="text"
|
||||
@value={{this.args.data.mail}}
|
||||
placeholder="Email address"
|
||||
{{on "change" this.checkMail}}
|
||||
/>
|
||||
</label>
|
||||
{{#if this.mailOk}}
|
||||
<p class="mail-ok">O</p>
|
||||
<p class="mail-ok mail-status">✔</p>
|
||||
{{else}}
|
||||
<p class="mail-error">X</p>
|
||||
<p class="mail-error mail-status">X</p>
|
||||
{{/if}}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue