mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 21:07:45 +00:00
Soon, you'll be able to store an OTP secret with Astra :-) Also, the cancel button is broken ATM, so you have to manually turn the feature off in the config.
16 lines
297 B
C++
16 lines
297 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class LauncherCore;
|
|
class LauncherWindow;
|
|
struct ProfileSettings;
|
|
|
|
class AutoLoginWindow : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
AutoLoginWindow(ProfileSettings& settings, LauncherCore& core, QWidget* parent = nullptr);
|
|
|
|
signals:
|
|
void loginCanceled();
|
|
};
|