
function Auth(app){
	this.app = app

}

Auth.prototype.resetPassword = function() {
  var win = new Window(this.app, 'auth_resetPassword')
  win.loadContent({auth_resetPassword:'auth/resetPassword.js'}, null, null);
}

Auth.prototype.changePassword = function() {
  var win = new Window(this.app, 'auth_changePassword')
  win.loadContent({auth_changePassword:'auth/changePassword.js'}, null, null);
}
