Project

General

Profile

Bug #6105 » ChangePasswordWidget.h

Bert Cuypers, 11/16/2017 08:34 AM

 
#ifndef _CHANGE_PASSWORD_WIDGET_H_
#define _CHANGE_PASSWORD_WIDGET_H_

#include <Wt/WDialog.h>
#include <Wt/WLineEdit.h>

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
(2-2/3)