Login-page and Register-page UI implemented.

This commit is contained in:
Asal Lotfi
2025-06-29 23:29:55 +03:30
parent c1b14a9159
commit 19fcf525ae
9 changed files with 469 additions and 91 deletions
@@ -13,7 +13,7 @@ public class TelegramApplication extends Application {
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(TelegramApplication.class.getResource("/org/to/telegramfinalproject/Intro.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 350, 500);
Scene scene = new Scene(fxmlLoader.load(), 1480, 820);
stage.setTitle("Telegram");
stage.setScene(scene);
stage.show();