mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
942 B
43 lines
942 B
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick 2.3
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.10
|
|
import im.nheko 1.0
|
|
|
|
Pane {
|
|
property string title: qsTr("Successful Verification")
|
|
|
|
ColumnLayout {
|
|
spacing: 16
|
|
|
|
Label {
|
|
id: content
|
|
|
|
Layout.maximumWidth: 400
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
wrapMode: Text.Wrap
|
|
text: qsTr("Verification successful! Both sides verified their devices!")
|
|
color: Nheko.colors.text
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
|
|
RowLayout {
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Button {
|
|
Layout.alignment: Qt.AlignRight
|
|
text: qsTr("Close")
|
|
onClicked: dialog.close()
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|