Files
CarlMonitor/LibreHardwareMonitor-0.9.4/LibreHardwareMonitor/UI/AuthForm.cs
2025-04-07 07:44:27 -07:00

46 lines
1.5 KiB
C#

// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// Copyright (C) LibreHardwareMonitor and Contributors.
// Partial Copyright (C) Michael Möller <mmoeller@openhardwaremonitor.org> and Contributors.
// All Rights Reserved.
using System;
using System.Windows.Forms;
namespace LibreHardwareMonitor.UI;
public partial class AuthForm : Form
{
private readonly MainForm _parent;
public AuthForm(MainForm m)
{
InitializeComponent();
_parent = m;
}
private void AuthForm_Load(object sender, EventArgs e)
{
httpAuthUsernameTextBox.Enabled = httpAuthPasswordTextBox.Enabled = enableHTTPAuthCheckBox.Checked = _parent.Server.AuthEnabled;
httpAuthUsernameTextBox.Text = _parent.Server.UserName;
}
private void HttpAuthCancelButton_Click(object sender, EventArgs e)
{
Close();
}
private void HttpAuthOkButton_Click(object sender, EventArgs e)
{
_parent.Server.UserName = httpAuthUsernameTextBox.Text;
_parent.Server.Password = httpAuthPasswordTextBox.Text;
_parent.Server.AuthEnabled = enableHTTPAuthCheckBox.Checked;
_parent.AuthWebServerMenuItemChecked = _parent.Server.AuthEnabled;
Close();
}
private void EnableHTTPAuthCheckBox_CheckedChanged(object sender, EventArgs e)
{
httpAuthUsernameTextBox.Enabled = httpAuthPasswordTextBox.Enabled = enableHTTPAuthCheckBox.Checked;
}
}