Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IDATT1002_2022_K2G9
Manage
Activity
Members
Labels
Plan
Issues
41
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Erik Skjellevik
IDATT1002_2022_K2G9
Merge requests
!6
Resolve "[US02-03] Create page for forgot password"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "[US02-03] Create page for forgot password"
21-us02-03-create-page-for-forgot-password
into
develop
Overview
0
Commits
5
Pipelines
0
Changes
1
Merged
Eirik Leer Talstad
requested to merge
21-us02-03-create-page-for-forgot-password
into
develop
2 years ago
Overview
0
Commits
5
Pipelines
0
Changes
1
Expand
Closes
#21
0
0
Merge request reports
Compare
develop
version 1
ce38bb4d
2 years ago
develop (base)
and
latest version
latest version
55f177e2
5 commits,
2 years ago
version 1
ce38bb4d
4 commits,
2 years ago
1 file
+
61
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
idatt1002_2022_k2g9/src/main/resources/ntnu/idatt2001/k2g9/gui/forgot-password.fxml
0 → 100644
+
61
−
0
Options
<?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