LoginView überarbeitet

This commit is contained in:
Richard Reiswich 2023-01-16 23:25:58 +01:00
parent 8634df0d6d
commit 074107752d

View File

@ -31,8 +31,7 @@
<Circle fill="#93c4f23d" layoutY="258.0" radius="106.0" stroke="BLACK" strokeType="INSIDE" strokeWidth="0.0" />
<VBox alignment="CENTER" layoutX="263.0" prefHeight="400.0" prefWidth="338.0" style="-fx-background-color: white;">
<children>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Text" />
<TextField promptText="email" style="-fx-background-color: transparent;">
<TextField promptText="Email" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;">
<VBox.margin>
<Insets bottom="15.0" left="25.0" right="25.0" top="25.0" />
</VBox.margin>
@ -40,18 +39,23 @@
<Blend />
</effect>
<font>
<Font name="Arimo" size="12.0" />
<Font name="Microsoft Tai Le" size="12.0" />
</font>
</TextField>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Text" />
<PasswordField promptText="passwort">
<PasswordField promptText="Passwort" style="-fx-background-color: transparent; -fx-border-color: lightgray; -fx-border-width: 0 0 1 0;">
<VBox.margin>
<Insets bottom="25.0" left="25.0" right="25.0" top="15.0" />
</VBox.margin>
<font>
<Font name="Microsoft Tai Le Bold" size="12.0" />
</font>
</PasswordField>
<HBox alignment="CENTER" prefHeight="30.0" prefWidth="238.0">
<children>
<Button mnemonicParsing="false" prefHeight="25.0" prefWidth="106.0" style="-fx-background-radius: 25; -fx-background-color: lightblue;" text="Login" textFill="WHITE" />
<Button mnemonicParsing="false" prefHeight="25.0" prefWidth="106.0" style="-fx-background-radius: 25; -fx-background-color: lightblue;" text="Login" textFill="WHITE">
<font>
<Font name="Microsoft Tai Le Bold" size="12.0" />
</font></Button>
<Button id="btSignUp" mnemonicParsing="false" prefHeight="25.0" prefWidth="101.0" style="-fx-background-color: tranparent;" text="Sign up" textFill="#7c7b7b" underline="true" />
</children>
</HBox>