mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
support 2fa
This commit is contained in:
28
GPClient/challengedialog.h
Normal file
28
GPClient/challengedialog.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef CHALLENGEDIALOG_H
|
||||
#define CHALLENGEDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
namespace Ui {
|
||||
class ChallengeDialog;
|
||||
}
|
||||
|
||||
class ChallengeDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ChallengeDialog(QWidget *parent = nullptr);
|
||||
~ChallengeDialog();
|
||||
|
||||
void setMessage(const QString &message);
|
||||
const QString getChallenge();
|
||||
|
||||
private slots:
|
||||
void on_challengeInput_textChanged(const QString &arg1);
|
||||
|
||||
private:
|
||||
Ui::ChallengeDialog *ui;
|
||||
};
|
||||
|
||||
#endif // CHALLENGEDIALOG_H
|
Reference in New Issue
Block a user