Lot of password related changes all over the place.
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.
This commit is contained in:
parent
6b9b602c64
commit
2230a4bd61
21 changed files with 508 additions and 195 deletions
22
pglab/PassPhraseForm.h
Normal file
22
pglab/PassPhraseForm.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue