Files
PowerPME_demo/target/classes/Views/Home/Contact.fxml
2025-10-30 12:59:45 +01:00

78 lines
4.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ChoiceBox?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<AnchorPane id="AnchorPane" fx:id="AnchorPaneContact" minHeight="642.0" minWidth="796.0" prefHeight="642.0" prefWidth="796.0" stylesheets="@../../Public/CSS/StylePrincipal.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" xmlns="http://javafx.com/javafx/13" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controllers.Home.ContactController">
<children>
<Pane fx:id="TitrePane" prefHeight="52.0" prefWidth="796.0" styleClass="pane2hautdroit" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<HBox alignment="BOTTOM_LEFT" layoutX="23.0" layoutY="13.1787109375">
<children>
<Text layoutX="23.0" layoutY="34.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Contactez-nous" wrappingWidth="174.72216796875">
<font>
<Font name="Arial" size="23.0" />
</font>
</Text>
<Text layoutX="176.0" layoutY="31.0" strokeType="OUTSIDE" strokeWidth="0.0" text=" ">
<font>
<Font name="Arial" size="15.0" />
</font>
</Text>
<Text layoutX="163.0" layoutY="34.0" strokeType="OUTSIDE" strokeWidth="0.0" text=" Accueil / Contactez-nous">
<font>
<Font name="Arial" size="15.0" />
</font>
</Text>
</children>
</HBox>
</children>
</Pane>
<Text layoutX="39.0" layoutY="103.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Formulaire de contact" wrappingWidth="228.3221435546875">
<font>
<Font name="Arial" size="23.0" />
</font>
</Text>
<Text layoutX="39.0" layoutY="129.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Les données obligatoires sont indiquées par un astérisque *. Le numéro de téléphone nous permettra de vous répondre plus rapidement, notamment en cas de problème." wrappingWidth="626.3221130371094">
<font>
<Font name="Arial" size="14.0" />
</font>
</Text>
<Text layoutX="39.0" layoutY="200.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Sujet de votre message" wrappingWidth="270.3221435546875">
<font>
<Font name="Arial" size="20.0" />
</font>
</Text>
<ChoiceBox fx:id="ChoiceBoxMsgSujet" layoutX="39.0" layoutY="221.0" prefHeight="36.0" prefWidth="303.0" styleClass="liste-select" />
<GridPane layoutX="39.0" layoutY="269.0" prefHeight="132.0" prefWidth="654.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" maxWidth="261.0" minWidth="10.0" prefWidth="261.0" />
<ColumnConstraints hgrow="SOMETIMES" maxWidth="178.79998779296875" minWidth="10.0" prefWidth="110.79997558593749" />
<ColumnConstraints hgrow="SOMETIMES" maxWidth="266.0000244140625" minWidth="10.0" prefWidth="266.0000244140625" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
<children>
<TextField prefHeight="36.0" prefWidth="156.0" promptText="Votre Nom *" />
<TextField prefHeight="36.0" prefWidth="156.0" promptText="Votre adresse e-mail *" GridPane.rowIndex="1" />
<TextField prefHeight="36.0" prefWidth="156.0" promptText="Votre Prénom *" GridPane.columnIndex="2" />
<TextField prefHeight="36.0" prefWidth="156.0" promptText="Votre N° téléphone *" GridPane.columnIndex="2" GridPane.rowIndex="1" />
</children>
</GridPane>
<TextArea layoutX="39.0" layoutY="417.0" prefHeight="151.0" prefWidth="654.0" promptText="Votre Message *" />
<Button layoutX="39.0" layoutY="590.0" mnemonicParsing="false" prefHeight="35.0" prefWidth="183.0" styleClass="btn-black" text="Envoyer" />
</children>
</AnchorPane>