1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?import javafx.geometry.Insets?>
- <?import javafx.scene.control.Button?>
- <?import javafx.scene.control.ButtonBar?>
- <?import javafx.scene.image.Image?>
- <?import javafx.scene.image.ImageView?>
- <?import javafx.scene.layout.HBox?>
- <?import javafx.scene.layout.VBox?>
- <?import javafx.scene.control.Hyperlink?>
- <?import javafx.scene.text.TextFlow?>
- <?import javafx.scene.text.Text?>
- <VBox xmlns:fx="http://javafx.com/fxml"
- xmlns="http://javafx.com/javafx"
- fx:controller="org.cryptomator.ui.keyloading.hub.RegisterDeviceController"
- minWidth="400"
- maxWidth="400"
- minHeight="145"
- spacing="12">
- <padding>
- <Insets topRightBottomLeft="12"/>
- </padding>
- <children>
- <HBox spacing="12" VBox.vgrow="ALWAYS">
- <ImageView VBox.vgrow="ALWAYS" fitWidth="64" preserveRatio="true" cache="true">
- <Image url="@../img/bot/bot.png"/>
- </ImageView>
- <VBox spacing="12">
- <TextFlow styleClass="text-flow">
- <Text text="TODO: Please click on "/>
- <Hyperlink styleClass="hyperlink-underline" text="TODO: Register Device" onAction="#browse"/>
- <Text text=" and enter this device verification code: "/>
- <Text text="${controller.verificationCode}"/>
- </TextFlow>
- </VBox>
- </HBox>
- <VBox alignment="BOTTOM_CENTER" VBox.vgrow="ALWAYS">
- <ButtonBar buttonMinWidth="120" buttonOrder="+I">
- <buttons>
- <Button text="%generic.button.close" ButtonBar.buttonData="FINISH" defaultButton="true" onAction="#close"/>
- </buttons>
- </ButtonBar>
- </VBox>
- </children>
- </VBox>
|