Parameters for sql execute
This commit is contained in:
28
src/ChangePasswordFormDialog.h
Normal file
28
src/ChangePasswordFormDialog.h
Normal file
@@ -0,0 +1,28 @@
|
||||
//
|
||||
// Created by Krad on 2021/11/11.
|
||||
//
|
||||
|
||||
#ifndef GUI_CHANGEPASSWORDFORMDIALOG_H
|
||||
#define GUI_CHANGEPASSWORDFORMDIALOG_H
|
||||
|
||||
#include "GUIFormBaseDialog.h"
|
||||
class QLineEdit;
|
||||
class QLabel;
|
||||
class ChangePasswordFormDialog:public GUIFormBaseDialog{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit ChangePasswordFormDialog(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
|
||||
~ChangePasswordFormDialog();
|
||||
|
||||
protected:
|
||||
bool updateReferenceData() override;
|
||||
|
||||
private:
|
||||
QLineEdit* pwd = nullptr;
|
||||
QLineEdit* new_pwd = nullptr;
|
||||
QLineEdit* confirm_pwd = nullptr;
|
||||
QLabel* lbl_error = nullptr;
|
||||
};
|
||||
|
||||
|
||||
#endif //GUI_CHANGEPASSWORDFORMDIALOG_H
|
||||
Reference in New Issue
Block a user