-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a6c70a
commit edf1a52
Showing
49 changed files
with
9,224 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Admin: | ||
|
||
User: admin | ||
Pass: admin1234 | ||
|
||
User: admin2 | ||
Pass: admin2345 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0" encoding="UTF-8"?><!-- You may freely edit this file. See commented blocks below for --><!-- some examples of how to customize the build. --><!-- (If you delete it and reopen the project it will be recreated.) --><!-- By default, only the Clean and Build commands use this build script. --><project name="movie" default="default" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant"> | ||
<description>Builds, tests, and runs the project movie.</description> | ||
<import file="nbproject/build-impl.xml"/> | ||
<!-- | ||
There exist several targets which are by default empty and which can be | ||
used for execution of your tasks. These targets are usually executed | ||
before and after some main targets. Those of them relevant for JavaFX project are: | ||
-pre-init: called before initialization of project properties | ||
-post-init: called after initialization of project properties | ||
-pre-compile: called before javac compilation | ||
-post-compile: called after javac compilation | ||
-pre-compile-test: called before javac compilation of JUnit tests | ||
-post-compile-test: called after javac compilation of JUnit tests | ||
-pre-jfx-jar: called before FX SDK specific <fx:jar> task | ||
-post-jfx-jar: called after FX SDK specific <fx:jar> task | ||
-pre-jfx-deploy: called before FX SDK specific <fx:deploy> task | ||
-post-jfx-deploy: called after FX SDK specific <fx:deploy> task | ||
-pre-jfx-native: called just after -pre-jfx-deploy if <fx:deploy> runs in native packaging mode | ||
-post-jfx-native: called just after -post-jfx-deploy if <fx:deploy> runs in native packaging mode | ||
-post-clean: called after cleaning build products | ||
(Targets beginning with '-' are not intended to be called on their own.) | ||
Example of inserting a HTML postprocessor after javaFX SDK deployment: | ||
<target name="-post-jfx-deploy"> | ||
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/> | ||
<property name="jfx.deployment.html" location="${jfx.deployment.dir}${file.separator}${jfx.deployment.base}.html"/> | ||
<custompostprocess> | ||
<fileset dir="${jfx.deployment.html}"/> | ||
</custompostprocess> | ||
</target> | ||
Example of calling an Ant task from JavaFX SDK. Note that access to JavaFX SDK Ant tasks must be | ||
initialized; to ensure this is done add the dependence on -check-jfx-sdk-version target: | ||
<target name="-post-jfx-jar" depends="-check-jfx-sdk-version"> | ||
<echo message="Calling jar task from JavaFX SDK"/> | ||
<fx:jar ...> | ||
... | ||
</fx:jar> | ||
</target> | ||
For more details about JavaFX SDK Ant tasks go to | ||
http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm | ||
For list of available properties check the files | ||
nbproject/build-impl.xml and nbproject/jfx-impl.xml. | ||
--> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#Fri, 16 Dec 2022 14:12:23 +0600 | ||
|
||
|
||
A\:\\Netbeans\ Projects\\movie= |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import de.jensd.fx.glyphs.fontawesome.FontAwesomeIcon?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.Hyperlink?> | ||
<?import javafx.scene.control.Label?> | ||
<?import javafx.scene.control.TextField?> | ||
<?import javafx.scene.layout.AnchorPane?> | ||
<?import javafx.scene.text.Font?> | ||
|
||
<AnchorPane id="AnchorPane" prefHeight="502.0" prefWidth="673.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/19" fx:controller="movie.FXMLDocumentController"> | ||
<children> | ||
<AnchorPane fx:id="signIn_form" layoutX="171.0" layoutY="128.0" prefHeight="502.0" prefWidth="673.0" styleClass="bg-form" stylesheets="@designLogin.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> | ||
<children> | ||
<Button fx:id="signIn_close" layoutX="593.0" layoutY="9.0" mnemonicParsing="false" onAction="#signIn_close" prefHeight="36.0" prefWidth="80.0" styleClass="close" stylesheets="@designLogin.css" AnchorPane.rightAnchor="2.0" AnchorPane.topAnchor="2.0"> | ||
<graphic> | ||
<FontAwesomeIcon glyphName="CLOSE" size="1.2em" /> | ||
</graphic> | ||
</Button> | ||
<Button fx:id="signIn_minimize" layoutX="511.0" layoutY="2.0" mnemonicParsing="false" onAction="#signIn_minimize" prefHeight="36.0" prefWidth="80.0" styleClass="close" stylesheets="@designLogin.css"> | ||
<graphic> | ||
<FontAwesomeIcon glyphName="MINUS" size="1.2em" /> | ||
</graphic> | ||
</Button> | ||
<FontAwesomeIcon fill="#ff2200" glyphName="USER" layoutX="299.0" layoutY="120.0" size="8EM" /> | ||
<Label layoutX="266.0" layoutY="134.0" text="Sign In" textFill="WHITE"> | ||
<font> | ||
<Font name="Constantia" size="46.0" /> | ||
</font> | ||
</Label> | ||
<TextField fx:id="signIn_username" layoutX="223.0" layoutY="236.0" onAction="#signin" prefHeight="30.0" prefWidth="220.0" promptText="Username" styleClass="textfield" stylesheets="@designLogin.css" /> | ||
<TextField fx:id="signIn_password" layoutX="223.0" layoutY="287.0" onAction="#signin" prefHeight="30.0" prefWidth="220.0" promptText="Password" styleClass="textfield" stylesheets="@designLogin.css" /> | ||
<Button fx:id="signIn_loginBtn" layoutX="281.0" layoutY="343.0" mnemonicParsing="false" onAction="#signin" prefHeight="64.0" prefWidth="104.0" styleClass="login-btn" stylesheets="@designLogin.css" text="Login"> | ||
<font> | ||
<Font name="Arial Black" size="30.0" /> | ||
</font> | ||
</Button> | ||
<Hyperlink fx:id="signIn_createAccount" layoutX="245.0" layoutY="438.0" onAction="#switchForm" prefHeight="36.0" prefWidth="177.0" text="Create a new account"> | ||
<font> | ||
<Font name="Calibri" size="18.0" /> | ||
</font> | ||
</Hyperlink> | ||
</children> | ||
</AnchorPane> | ||
<AnchorPane fx:id="signUp_form" layoutX="-4.0" layoutY="5.0" prefHeight="507.0" prefWidth="673.0" styleClass="bg-form" stylesheets="@designLogin.css" visible="false" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> | ||
<children> | ||
<Button fx:id="signUp_minimize" layoutX="511.0" layoutY="2.0" mnemonicParsing="false" onAction="#signUp_minimize" prefHeight="36.0" prefWidth="80.0" styleClass="minimize" stylesheets="@designLogin.css"> | ||
<graphic> | ||
<FontAwesomeIcon glyphName="MINUS" size="1.2em" /> | ||
</graphic> | ||
</Button> | ||
<Button fx:id="signUp_close" layoutX="591.0" layoutY="2.0" mnemonicParsing="false" onAction="#signUp_close" prefHeight="36.0" prefWidth="80.0" styleClass="minimize" stylesheets="@designLogin.css"> | ||
<graphic> | ||
<FontAwesomeIcon glyphName="CLOSE" size="1.2em" /> | ||
</graphic> | ||
</Button> | ||
<FontAwesomeIcon fill="#ff2200" glyphName="USER_PLUS" layoutX="296.0" layoutY="102.0" size="8EM" /> | ||
<Label layoutX="263.0" layoutY="116.0" text="Sign Up" textFill="WHITE"> | ||
<font> | ||
<Font name="Constantia" size="46.0" /> | ||
</font> | ||
</Label> | ||
<TextField fx:id="signUp_username" layoutX="233.0" layoutY="236.0" prefHeight="30.0" prefWidth="220.0" promptText="Username" styleClass="textfield" stylesheets="@designLogin.css" /> | ||
<TextField fx:id="signUp_password" layoutX="233.0" layoutY="287.0" prefHeight="30.0" prefWidth="220.0" promptText="Password" styleClass="textfield" stylesheets="@designLogin.css" /> | ||
<Button fx:id="signUp_btn" layoutX="281.0" layoutY="343.0" mnemonicParsing="false" onAction="#signup" prefHeight="64.0" prefWidth="104.0" styleClass="login-btn" stylesheets="@designLogin.css" text="Sign Up"> | ||
<font> | ||
<Font name="Arial Black" size="30.0" /> | ||
</font> | ||
</Button> | ||
<Hyperlink fx:id="signUp_alreadyHaveAccount" layoutX="238.0" layoutY="441.0" onAction="#switchForm" prefHeight="36.0" prefWidth="209.0" text="Already have an account?"> | ||
<font> | ||
<Font name="Calibri" size="18.0" /> | ||
</font> | ||
</Hyperlink> | ||
<TextField fx:id="signUp_email" layoutX="233.0" layoutY="190.0" prefHeight="30.0" prefWidth="220.0" promptText="Email Address" styleClass="textfield" stylesheets="@designLogin.css" /> | ||
</children> | ||
</AnchorPane> | ||
</children> | ||
</AnchorPane> |
Binary file not shown.
Binary file not shown.
Oops, something went wrong.