Skip to content

I created a simple interface using the Custom Tkinter Python Library that allows you to add a email and password to log in.

Notifications You must be signed in to change notification settings

ChuvsLA/interface-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

interface-python

import customtkinter

customtkinter.set_appearance_mode('light')

janela = customtkinter.CTk() janela.geometry('500x300')

def clique(): print('Fazer Login')

texto = customtkinter.CTkLabel(janela, text='Login') texto.pack(padx= 10, pady= 10)

email = customtkinter.CTkEntry(janela, placeholder_text = 'Enter your email here') email.pack(padx= 10, pady = 10) senha = customtkinter.CTkEntry(janela, placeholder_text = 'Enter your password here', show='*') senha.pack(padx= 10, pady = 10)

botao = customtkinter.CTkButton(janela, fg_color="blue", text='Login')
botao.pack(padx=10, pady=10)

janela.mainloop()

About

I created a simple interface using the Custom Tkinter Python Library that allows you to add a email and password to log in.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published