After Graduate Update

This commit is contained in:
Daniel 2025-11-26 19:31:33 +03:00
parent b92a91ab37
commit c6917dd85e
69 changed files with 7540 additions and 0 deletions

View file

@ -0,0 +1,11 @@
from PyQt6.QtWidgets import QApplication
from PyQt6.QtGui import QIcon
from pages.auth_page import AuthPage
app = QApplication([])
app.setWindowIcon(QIcon("app/res/imgs/master_pol.ico"))
start_page = AuthPage()
start_page.show()
app.exec()