Add default login value

This commit is contained in:
Jérémi N ‘EndMove’ 2022-03-05 15:05:52 +01:00
parent 78196f209c
commit ba002a4392
Signed by: EndMove
GPG Key ID: 65C4A02E1F5371A4

View File

@ -11,10 +11,14 @@ class MainWindow:
self.root.title("SecCon - © Louis SWINNEN 2022")
self.root.config(bd=5)
self.host = tk.StringVar()
self.host.set("127.0.0.1")
self.passw = tk.StringVar()
self.passw.set("aaaaa")
self.login = tk.StringVar()
self.login.set("aa")
self.tls = tk.BooleanVar()
self.port = tk.IntVar()
self.port.set(8500)
self.draw_window()
def start_main_loop(self):