%
var usernameValue = inputs.form ? inputs.form.username||inputs.form.email : '';
var passwordValue = inputs.form ? inputs.form.password : '';
// Status Messages
var statusDictionary = {};
statusDictionary['unverified'] = 'Before you can log into your account, you need to confirm your account by clicking the link we sent to your email address.
Be sure to check your spam folder and whitelist no-reply@equeum.com.';
statusDictionary['verified'] = 'You have successfully confirmed your email address. If you wish to login, you can do so below.';
statusDictionary['reset'] = 'Password is reset, You can now login with your new password.';
statusDictionary['forgot'] = 'Password Reset Requested.
If an account exists for the email provided, you will receive an email shortly.';
// Set the Current Status Information
var status_text=statusDictionary[inputs.status]||'';
if(inputs.feedback){
if(status_text)status_text+='
';
status_text+= inputs.feedback;
}
var error_text=inputs.error||'';
%>