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; using Ubar4.Datos; namespace Ubar4 { public partial class Log : Form { public Log() { InitializeComponent(); } private void btnLog_Click(object sender, EventArgs e) { string nombreUser=userTxt.Text.Trim(); datosUsuario.ComprobarUsuario(nombreUser); } private void registroLbl_Click(object sender, EventArgs e) { Registro reg = new Registro(); reg.ShowDialog(); } } }