#ifndef _CHANGE_PASSWORD_WIDGET_H_ #define _CHANGE_PASSWORD_WIDGET_H_ #include #include using namespace Wt; class ChangePasswordWidget : public WDialog { public: ChangePasswordWidget(bool aReqCurrentPsw); virtual ~ChangePasswordWidget(); bool changePassword(); private: bool _reqCurrentPsw; WLineEdit * _currentPassword; WLineEdit * _newPassword; WLineEdit * _confirmPassword; }; #endif