123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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 BeautySaloon
- {
- public partial class AuthForm : Form
- {
- public AuthForm()
- {
- InitializeComponent();
- }
- private void klientButton_Click(object sender, EventArgs e)
- {
- KlientForm form = new KlientForm();
- form.Show();
- this.Hide();
- }
- private void ExitButton_Click(object sender, EventArgs e)
- {
- this.Close();
- Application.Exit();
- }
- private void AuthForm_Load(object sender, EventArgs e)
- {
- }
- private void AdminButton_Click(object sender, EventArgs e)
- {
- AdminAuthForm form = new AdminAuthForm();
- form.Show();
- this.Hide();
- }
- }
- }
|