Created
October 3, 2019 17:36
-
-
Save DataSolveProblems/d5cf9e1c59cb1b1a8ae7a34673b24bcd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from PyQt5.QtWidgets import (QApplication, QWidget, QPushButton, QLabel, QLineEdit, QGridLayout, QMessageBox) | |
class LoginForm(QWidget): | |
def __init__(self): | |
super().__init__() | |
self.setWindowTitle('Login Form') | |
self.resize(500, 120) | |
layout = QGridLayout() | |
label_name = QLabel('<font size="4"> Username </font>') | |
self.lineEdit_username = QLineEdit() | |
self.lineEdit_username.setPlaceholderText('Please enter your username') | |
layout.addWidget(label_name, 0, 0) | |
layout.addWidget(self.lineEdit_username, 0, 1) | |
label_password = QLabel('<font size="4"> Password </font>') | |
self.lineEdit_password = QLineEdit() | |
self.lineEdit_password.setPlaceholderText('Please enter your password') | |
layout.addWidget(label_password, 1, 0) | |
layout.addWidget(self.lineEdit_password, 1, 1) | |
button_login = QPushButton('Login') | |
button_login.clicked.connect(self.check_password) | |
layout.addWidget(button_login, 2, 0, 1, 2) | |
layout.setRowMinimumHeight(2, 75) | |
self.setLayout(layout) | |
def check_password(self): | |
msg = QMessageBox() | |
if self.lineEdit_username.text() == 'Usernmae' and self.lineEdit_password.text() == '000': | |
msg.setText('Success') | |
msg.exec_() | |
app.quit() | |
else: | |
msg.setText('Incorrect Password') | |
msg.exec_() | |
if __name__ == '__main__': | |
app = QApplication(sys.argv) | |
form = LoginForm() | |
form.show() | |
sys.exit(app.exec_()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mm