Drop new user component, for now
This commit is contained in:
parent
fb57534b64
commit
7c194447f7
4 changed files with 37 additions and 42 deletions
|
@ -1 +1,32 @@
|
|||
{{users/new/new-user-form user=user action="success"}}
|
||||
<div class="grid-1">
|
||||
<div class="span-1">
|
||||
<fieldset>
|
||||
<legend>New User Signup</legend>
|
||||
<form {{action 'save' on='submit'}}>
|
||||
<ul>
|
||||
<li>
|
||||
<label>Name</label>
|
||||
{{input value=user.name}}
|
||||
</li>
|
||||
<li>
|
||||
<label>Email</label>
|
||||
{{input value=user.email}}
|
||||
</li>
|
||||
<li>
|
||||
<label>Password</label>
|
||||
{{input type="password" value=user.password}}
|
||||
</li>
|
||||
<li>
|
||||
<label>Password (confirm)</label>
|
||||
{{input type="password" value=passwordConfirm}}
|
||||
</li>
|
||||
<li>
|
||||
<button type="submit" class="button-green smaller">
|
||||
Submit
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
</form>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Reference in a new issue