18 lines
637 B
C#
18 lines
637 B
C#
namespace C969Project
|
|
{
|
|
public partial class LoginForm : Form
|
|
{
|
|
public LoginForm()
|
|
{
|
|
InitializeComponent();
|
|
|
|
// Determine user location and set the Localization CureentLanguage based on either US or IS location
|
|
|
|
loginLabel.Text = Localization.GetLocalization("login_text");
|
|
usernameTextBox.PlaceholderText = Localization.GetLocalization("username_text");
|
|
passwordTextBox.PlaceholderText = Localization.GetLocalization("password_text");
|
|
loginButton.Text = Localization.GetLocalization("login_text");
|
|
}
|
|
}
|
|
}
|