// Copyright (c) 2018 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 import QtQuick.Controls 1.1 import UM 1.4 as UM import Cura 1.1 as Cura import "../components" Column { ActionButton { text: catalog.i18nc("@button", "Manage Profile") color: "transparent" hoverColor: "transparent" textColor: UM.Theme.getColor("text") textHoverColor: UM.Theme.getColor("text_link") onClicked: Qt.openUrlExternally("https://account.ultimaker.com") } ActionButton { text: catalog.i18nc("@button", "Sign Out") color: "transparent" hoverColor: "transparent" textColor: UM.Theme.getColor("text") textHoverColor: UM.Theme.getColor("text_link") onClicked: Cura.API.account.logout() } }