<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.layout.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.text.*?>

<GridPane id="pane" stylesheets="@Fxml1.css">
	<Text id="heading" 
	    text="Welcome to FXML"  
        GridPane.columnIndex="0" GridPane.rowIndex="0" GridPane.columnSpan="2"
		GridPane.halignment="center">
    </Text> 
    <Label id="label1"
	    text="User Name:" 
	    GridPane.columnIndex="0" GridPane.rowIndex="1">
    </Label>
    <TextField id="user" 
	    GridPane.columnIndex="1" GridPane.rowIndex="1">
    </TextField>
    <Label id="label2"
	    text="Password:"
        GridPane.columnIndex="0" GridPane.rowIndex="2">
    </Label>
    <PasswordField id="pswd"  
        GridPane.columnIndex="1" GridPane.rowIndex="2">
    </PasswordField>
</GridPane>