Password is no longer saved with the connection list. Password is not entered along with other connection credentials. Password is now asked for when required. Still working on saving the password and auto retrieving it from the password manager.
22 lines
309 B
C++
22 lines
309 B
C++
#ifndef PASSPHRASEFORM_H
|
|
#define PASSPHRASEFORM_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class PassPhraseForm;
|
|
}
|
|
|
|
class PassPhraseForm : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PassPhraseForm(QWidget *parent = nullptr);
|
|
~PassPhraseForm();
|
|
|
|
private:
|
|
Ui::PassPhraseForm *ui;
|
|
};
|
|
|
|
#endif // PASSPHRASEFORM_H
|