Skip to content

Commit

Permalink
Update design
Browse files Browse the repository at this point in the history
  • Loading branch information
WildCat21 authored Sep 5, 2021
1 parent 45fe3e2 commit 9527955
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions cvd.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,22 +450,23 @@ def __init__(self, main, parent=None):
self.ps1 = QLineEdit()
fe = QPushButton("login")
pfff = QLabel("* Pflichtfelder")
rg = QPushButton("registrieren")
rg = QPushButton("Noch kein Konto?")
pltz = QLabel()

rg.setStyleSheet("border: None; color: blue;")
fe.setStyleSheet('font: 75 10pt "Microsoft YaHei UI"; font-weight: bold; color: rgb(255, 255, 255); background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgb(61, 217, 245), stop:1 rgb(240, 53, 218)); border-style: solid; border-radius:9px; }')

rg.clicked.connect(main.registrer)
fe.clicked.connect(self.logii)

llly.addWidget(us, 0, 1)
llly.addWidget(self.us1, 1, 1)
llly.addWidget(self.us1, 0, 3)
llly.addWidget(ps, 2, 1)
llly.addWidget(self.ps1, 3, 1)
llly.addWidget(pltz, 4, 1)
llly.addWidget(fe, 5, 0)
llly.addWidget(self.ps1, 2, 3)
llly.addWidget(pltz, 3, 2)
llly.addWidget(fe, 4, 2)
llly.addWidget(pfff, 5, 1)
llly.addWidget(rg, 5, 2)
llly.addWidget(rg, 5, 3)

self.setLayout(llly)

Expand Down Expand Up @@ -544,8 +545,9 @@ def __init__(self, main, parent=None):

fertig = QPushButton("registrieren")
pf = QLabel("* Pflichtfelder")
log = QPushButton("login")
log = QPushButton("Du hast schon ein Konto?")

log.setStyleSheet("border: None; color: blue;")
fertig.setStyleSheet('font: 75 10pt "Microsoft YaHei UI"; font-weight: bold; color: rgb(255, 255, 255); background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgb(61, 217, 245), stop:1 rgb(240, 53, 218)); border-style: solid; border-radius:9px; }')

fertig.clicked.connect(self.regg)
Expand Down

0 comments on commit 9527955

Please sign in to comment.