Add files via upload

This commit is contained in:
Robert-Ciubotaru
2023-06-04 21:52:04 +03:00
committed by GitHub
parent f0c9e2f843
commit 350bc65bea
100 changed files with 3128 additions and 0 deletions
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import de.jensd.fx.glyphs.icons525.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>
<HBox alignment="CENTER" prefHeight="600.0" prefWidth="1000.0" stylesheets="@Login.css" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.example.demo3.LoginController">
<children>
<VBox alignment="CENTER" prefHeight="600.0" prefWidth="300.0" styleClass="left-form" stylesheets="@Login.css" HBox.hgrow="ALWAYS">
<children>
<Icons525View glyphName="USER" size="100" text="" />
<Label styleClass="label-form" stylesheets="@Login.css" text="Delivery Planner">
<font>
<Font name="System Bold" size="23.0" />
</font>
</Label>
<Label styleClass="label-form" stylesheets="@Login.css" text="Admin Console">
<font>
<Font name="System Bold" size="20.0" />
</font>
</Label>
</children>
</VBox>
<VBox alignment="CENTER" prefHeight="600.0" prefWidth="500.0" spacing="20.0" styleClass="right-form" stylesheets="@Login.css" HBox.hgrow="ALWAYS">
<children>
<Label styleClass="label-form" stylesheets="@Login.css" text="Welcome Back!">
<font>
<Font name="System Bold" size="30.0" />
</font>
</Label>
<Label fx:id="errorField" textFill="RED" />
<TextField fx:id="email" maxWidth="200.0" prefHeight="34.0" prefWidth="149.0" promptText="email" />
<PasswordField fx:id="password" maxWidth="200.0" prefHeight="34.0" prefWidth="149.0" promptText="password" />
<Button fx:id="loginBtn" maxWidth="200.0" mnemonicParsing="false" prefHeight="34.0" prefWidth="149.0" styleClass="label-form" text="login">
<font>
<Font name="System Bold" size="12.0" />
</font>
</Button>
<Label fx:id="loading" maxWidth="200.0" prefHeight="34.0" prefWidth="200.0">
<VBox.margin>
<Insets bottom="-20.0" />
</VBox.margin></Label>
<ProgressBar fx:id="progressBar" prefWidth="200.0" progress="0.0" VBox.vgrow="ALWAYS" />
</children>
<padding>
<Insets left="30.0" right="30.0" />
</padding>
</VBox>
</children>
</HBox>