Skip to content
Snippets Groups Projects

Resolve "[US02-03] Create page for forgot password"

Merged Eirik Leer Talstad requested to merge 21-us02-03-create-page-for-forgot-password into develop
1 file
+ 61
0
Compare changes
  • Side-by-side
  • Inline
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.String?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<AnchorPane maxHeight="-1.0" maxWidth="-1.0" prefHeight="656.0" prefWidth="1300.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Pane layoutY="86.0" prefHeight="570.0" prefWidth="200.0" styleClass="top-bar" stylesheets="@styles.css">
<children>
<Button mnemonicParsing="false" prefHeight="62.0" prefWidth="200.0" style="-fx-text-alignment: left;" stylesheets="@styles.css" text="Tournament hub">
<styleClass>
<String fx:value="button-menu" />
<String fx:value="button" />
</styleClass>
</Button>
<Button layoutY="62.0" mnemonicParsing="false" prefHeight="62.0" prefWidth="200.0" stylesheets="@styles.css" text="Manage tournaments">
<styleClass>
<String fx:value="button-menu" />
<String fx:value="button" />
</styleClass>
</Button>
<Button layoutY="124.0" mnemonicParsing="false" prefHeight="62.0" prefWidth="200.0" stylesheets="@styles.css" text="Admin settings">
<styleClass>
<String fx:value="button-menu" />
<String fx:value="button" />
</styleClass>
</Button>
</children>
</Pane>
<Pane prefHeight="86.0" prefWidth="1300.0" styleClass="top-bar" stylesheets="@styles.css">
<children>
<Label layoutY="29.0" prefHeight="30.0" prefWidth="286.0" styleClass="p-header" stylesheets="@styles.css" text="Chess tournament organizer">
<padding>
<Insets left="10.0" />
</padding>
</Label>
<Button layoutX="1153.0" layoutY="31.0" mnemonicParsing="false" stylesheets="@styles.css" text="Admin, log out">
<styleClass>
<String fx:value="button-logout" />
<String fx:value="button" />
</styleClass>
</Button>
</children>
</Pane>
<Text layoutX="373.0" layoutY="201.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Forgot password">
<font>
<Font size="41.0" />
</font>
</Text>
<Text layoutX="371.0" layoutY="270.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Email address:" />
<TextField fx:id="inpEmailNewPassword" layoutX="361.0" layoutY="280.0" stylesheets="@styles.css" />
<Button fx:id="btnRequestNewPassword" layoutX="525.0" layoutY="280.0" mnemonicParsing="false" onAction="#requestNewPassword" stylesheets="@styles.css" text="Request new password" />
</children>
</AnchorPane>
Loading