mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 23:09:52 +01:00
26 lines
508 B
C#
26 lines
508 B
C#
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 APP
|
|
{
|
|
public partial class Main : Form
|
|
{
|
|
public Main()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void loginToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
// TODO search for user in backend
|
|
}
|
|
}
|
|
}
|