using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace AwesomeEmailExtractor { public partial class AuthorizationForm : Form { public AuthorizationForm() { InitializeComponent(); } private void loginButton_Click(object sender, EventArgs e) { try { Globals.currentUser = Authorization.Login(entryLogin.Text, entryPassword.Text); Logs.Log(Globals.currentUser, Logs.Action.Login, new Dictionary()); var mainForm = FormManager.Current.CreateForm(); FormManager.Current.Navigate(this, mainForm); } catch (Exception ex) { MessageBox.Show(ex.Message); } } private void registerButton_Click(object sender, EventArgs e) { var form = FormManager.Current.CreateForm(); FormManager.Current.Navigate(this, form); } } }