Skip to content
Open

Beta #13

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ pyvenv.cfg
atlas.db
setup.pyvenv
atlas.sqlite
atlas.sqlite
setup.py
tests.py
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ I need an local server to help me stay up-to-date and giving away of spreadsheet

- Tela de login.
- Pagina Inicial
- Página de Relatórios
Binary file removed atlas.sqlite
Binary file not shown.
11 changes: 8 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def login_clicked():
showwarning(title='ERRO', message='Usuário e Senha incorreto.')

def user_logado():

janela.withdraw()
janela2 = tk.Toplevel()
janela2.title('ATLAS - Interface')
Expand All @@ -35,6 +36,8 @@ def user_logado():
janela_label.grid(row=0,column=0,padx=10,pady=30,columnspan=4)
relatorio_label = tk.Label(janela2, text="Relatório")
relatorio_label.grid(row=1,column=1,padx=5,pady=5)
relatorio_label = tk.Label(janela2, text="Adicione eventos recentes relatando o que ocorreu")
relatorio_label.grid(row=1,column=1,padx=5,pady=5)

def cadastrar_usuario():
global janelacn_entry
Expand Down Expand Up @@ -136,10 +139,12 @@ def cad_usuario():
password_entry = ttk.Entry(janela, textvariable=password)
password_entry.grid(row=5,column=3,padx=10,pady=10)

texto1 = ttk.Label(janela, text="-Relatórios")
texto1.grid(row=3,column=0,padx=10,pady=10, ipadx=80)
texto1 = ttk.Label(janela, text="-Gerenciamento Planilhas")
texto1.grid(row=3,column=0,padx=5,pady=5, ipadx=30)
texto2 = ttk.Label(janela, text="-Relatórios")
texto2.grid(row=4,column=0,padx=10,pady=10,ipadx=80)
texto2.grid(row=4,column=0,padx=5,pady=10,ipadx=30)
texto3 = ttk.Label(janela, text="-Gerenciamento de Colaboradores")
texto3.grid(row=5,column=0,padx=5,pady=5,ipadx=30)

# Manter janela aberta
janela.mainloop()
18 changes: 0 additions & 18 deletions setup.py

This file was deleted.