54 lines
1.8 KiB
JavaScript
54 lines
1.8 KiB
JavaScript
|
parasails.registerPage('login', {
|
|||
|
// ╦╔╗╔╦╔╦╗╦╔═╗╦ ╔═╗╔╦╗╔═╗╔╦╗╔═╗
|
|||
|
// ║║║║║ ║ ║╠═╣║ ╚═╗ ║ ╠═╣ ║ ║╣
|
|||
|
// ╩╝╚╝╩ ╩ ╩╩ ╩╩═╝ ╚═╝ ╩ ╩ ╩ ╩ ╚═╝
|
|||
|
data: {
|
|||
|
// Main syncing/loading state for this page.
|
|||
|
syncing: false,
|
|||
|
|
|||
|
// Form data
|
|||
|
formData: {
|
|||
|
rememberMe: true,
|
|||
|
},
|
|||
|
|
|||
|
// For tracking client-side validation errors in our form.
|
|||
|
// > Has property set to `true` for each invalid property in `formData`.
|
|||
|
formErrors: { /* … */ },
|
|||
|
|
|||
|
// A set of validation rules for our form.
|
|||
|
// > The form will not be submitted if these are invalid.
|
|||
|
formRules: {
|
|||
|
emailAddress: { required: true, isEmail: true },
|
|||
|
password: { required: true },
|
|||
|
},
|
|||
|
|
|||
|
// Server error state for the form
|
|||
|
cloudError: '',
|
|||
|
},
|
|||
|
|
|||
|
// ╦ ╦╔═╗╔═╗╔═╗╦ ╦╔═╗╦ ╔═╗
|
|||
|
// ║ ║╠╣ ║╣ ║ ╚╦╝║ ║ ║╣
|
|||
|
// ╩═╝╩╚ ╚═╝╚═╝ ╩ ╚═╝╩═╝╚═╝
|
|||
|
beforeMount: function() {
|
|||
|
//…
|
|||
|
},
|
|||
|
mounted: async function() {
|
|||
|
//…
|
|||
|
},
|
|||
|
|
|||
|
// ╦╔╗╔╔╦╗╔═╗╦═╗╔═╗╔═╗╔╦╗╦╔═╗╔╗╔╔═╗
|
|||
|
// ║║║║ ║ ║╣ ╠╦╝╠═╣║ ║ ║║ ║║║║╚═╗
|
|||
|
// ╩╝╚╝ ╩ ╚═╝╩╚═╩ ╩╚═╝ ╩ ╩╚═╝╝╚╝╚═╝
|
|||
|
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 = '/';
|
|||
|
},
|
|||
|
|
|||
|
}
|
|||
|
});
|