blob: ba57dbd42c2c7b61b8f379a7cdd185058af7879f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import QtQuick 2.0
import QtQuick.Dialogs 1.2
import QtQuick.Controls 2.12
Dialog {
standardButtons: StandardButton.Ok
title: qsTr("Login Successful")
Column {
anchors.fill: parent
Text {
text: qsTr("Login successful. You can now start the VPN.")
}
}
function _loginOk() {
visible: false
backend.resetNotification("login_ok")
}
visible: false
onAccepted: _loginOk()
onRejected: _loginOk()
}
|