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,7 +1,6 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Component.extend({
|
export default Ember.Controller.extend({
|
||||||
classNames: ['grid-1'],
|
|
||||||
passwordConfirm: null,
|
passwordConfirm: null,
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
|
@ -17,7 +16,10 @@ export default Ember.Component.extend({
|
||||||
|
|
||||||
if (user.get('hasDirtyAttributes')) {
|
if (user.get('hasDirtyAttributes')) {
|
||||||
user.save().then(() => {
|
user.save().then(() => {
|
||||||
this.sendAction();
|
this.transitionTo('login').then(() => {
|
||||||
|
this.get('flashMessages').information(`You have successfully signed up.
|
||||||
|
Please check your email for further instructions.`);
|
||||||
|
});
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
// Manually clean up messages because there is no transition
|
// Manually clean up messages because there is no transition
|
||||||
this.get('flashMessages').clearMessages();
|
this.get('flashMessages').clearMessages();
|
|
@ -1,30 +0,0 @@
|
||||||
<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>
|
|
|
@ -12,12 +12,4 @@ export default Ember.Route.extend(UnauthenticatedRouteMixin, {
|
||||||
controller.setProperties(model);
|
controller.setProperties(model);
|
||||||
},
|
},
|
||||||
|
|
||||||
actions: {
|
|
||||||
success: function() {
|
|
||||||
this.transitionTo('login').then(() => {
|
|
||||||
this.get('flashMessages').information(`You have successfully signed up.
|
|
||||||
Please check your email for further instructions.`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -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