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 Pithos { public partial class unlock : Form { private List validUserNames = privateFunctions.validUserNames(); private List validMachineNames = privateFunctions.validMachineNames(); public unlock() { InitializeComponent(); } private void loginSuccessful() { this.Hide(); Program.MW.Show(); } private void checkWorkSpaceValidations() { string machineName = Environment.MachineName; string domainName = Environment.UserDomainName; string userName = Environment.UserName; if (validUserNames.Contains(userName) || validMachineNames.Contains(machineName) || validMachineNames.Contains(domainName)) { MessageBox.Show("Valid Computer Credentials have been detected. Automatic Login Initiated.", "Computer Confirmed", MessageBoxButtons.OK, MessageBoxIcon.Information); } } private void button1_Click(object sender, EventArgs e) { unlockButton.Text = "Validating..."; if (privateFunctions.checkHardCodes(licenceInput.Text)) { MessageBox.Show("You have entered hard-coded login credentials. Access Granted.", "Access Granted", MessageBoxButtons.OK, MessageBoxIcon.Information); loginSuccessful(); } } private void unlock_Load(object sender, EventArgs e) { //checkWorkSpaceValidations(); } } }