Add title Label in login screen
This commit is contained in:
parent
c7a07eae43
commit
47fc66bcf6
1 changed files with 1 additions and 0 deletions
1
main.py
1
main.py
|
@ -166,6 +166,7 @@ class GesMag:
|
|||
ecart = 80 # écart pour avoir un affichage centré
|
||||
Label(self.f).grid(row=0, pady=50) # utilisé pour du padding (meilleur affichage)
|
||||
|
||||
Label(self.f, text="Connexion", font=(self.font[0], 30)).grid(column=1, row=0, columnspan=2)# titre
|
||||
Label(self.f, text="Utilisateur", font=self.font).grid(column=0, row=1, columnspan=2, padx=ecart - 20, pady=20, sticky='w')
|
||||
utilisateur = Entry(self.f, font=self.font, width=18)
|
||||
utilisateur.grid(column=1, row=2, columnspan=2, padx=ecart)
|
||||
|
|
Reference in a new issue