# Send troll message to user self.send_message_to_user(user, troll_message)
# Create user information label self.user_info_label = tk.Label(self.root, text="User Information:") self.user_info_label.pack(padx=10, pady=10)
# Kick/ban user if kick_ban_options == "temporary": duration = self.kick_ban_duration_entry.get() self.temporary_ban_user(user, duration) elif kick_ban_options == "permanent": self.permanent_ban_user(user)
# Close socket sock.close()
# Create login button self.login_button = tk.Button(self.login_window, text="Login", command=self.check_credentials) self.login_button.pack(padx=10, pady=10)