53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
|
parasails.registerPage('new-password', {
|
|||
|
// ╦╔╗╔╦╔╦╗╦╔═╗╦ ╔═╗╔╦╗╔═╗╔╦╗╔═╗
|
|||
|
// ║║║║║ ║ ║╠═╣║ ╚═╗ ║ ╠═╣ ║ ║╣
|
|||
|
// ╩╝╚╝╩ ╩ ╩╩ ╩╩═╝ ╚═╝ ╩ ╩ ╩ ╩ ╚═╝
|
|||
|
data: {
|
|||
|
// Main syncing/loading state for this page.
|
|||
|
syncing: false,
|
|||
|
|
|||
|
// Form data
|
|||
|
formData: { /* … */ },
|
|||
|
|
|||
|
// For tracking client-side validation errors in our form.
|
|||
|
// > Has property set to `true` for each invalid property in `formData`.
|
|||
|
formErrors: { /* … */ },
|
|||
|
|
|||
|
// Form rules
|
|||
|
formRules: {
|
|||
|
password: {required: true},
|
|||
|
confirmPassword: {required: true, sameAs: 'password'},
|
|||
|
},
|
|||
|
|
|||
|
// Server error state for the form
|
|||
|
cloudError: '',
|
|||
|
},
|
|||
|
|
|||
|
// ╦ ╦╔═╗╔═╗╔═╗╦ ╦╔═╗╦ ╔═╗
|
|||
|
// ║ ║╠╣ ║╣ ║ ╚╦╝║ ║ ║╣
|
|||
|
// ╩═╝╩╚ ╚═╝╚═╝ ╩ ╚═╝╩═╝╚═╝
|
|||
|
beforeMount: function() {
|
|||
|
//…
|
|||
|
},
|
|||
|
mounted: async function() {
|
|||
|
|
|||
|
this.formData.token = this.token;
|
|||
|
|
|||
|
},
|
|||
|
|
|||
|
// ╦╔╗╔╔╦╗╔═╗╦═╗╔═╗╔═╗╔╦╗╦╔═╗╔╗╔╔═╗
|
|||
|
// ║║║║ ║ ║╣ ╠╦╝╠═╣║ ║ ║║ ║║║║╚═╗
|
|||
|
// ╩╝╚╝ ╩ ╚═╝╩╚═╩ ╩╚═╝ ╩ ╩╚═╝╝╚╝╚═╝
|
|||
|
methods: {
|
|||
|
|
|||
|
submittedForm: async function() {
|
|||
|
// Redirect to the logged-in dashboard on success.
|
|||
|
// > (Note that we re-enable the syncing state here. This is on purpose--
|
|||
|
// > to make sure the spinner stays there until the page navigation finishes.)
|
|||
|
this.syncing = true;
|
|||
|
window.location = '/';
|
|||
|
},
|
|||
|
|
|||
|
}
|
|||
|
});
|