private void BtnRegIniciarSesion_Click(object sender, EventArgs e) { this.Hide(); Inicio_Sesion inicio_Sesion = new Inicio_Sesion(); inicio_Sesion.Show(); }
private void BtnCrearCuenta_Click(object sender, EventArgs e) { if (TBxRut.Text != "Ingrese su Rut") { string Rut = TBxRut.Text; if (TBxNombre.Text != "Ingrese su Nombre") { string Nombre = TBxNombre.Text; if (TBxApellido.Text != "Ingrese su Apellido") { string Apellido = TBxApellido.Text; if (TBxEmail.Text != "Ingrese su Email") { string Email = TBxEmail.Text; if (TBxContrasena.Text != "Cree una ContraseƱa") { string Contrasena = TBxContrasena.Text; if (carrera.Text != "Seleccione una Carrera:") { string Url = Rut + ".txt"; if (File.Exists(Url)) { MessageBox.Show("Este usuario ya se encuentra registrado"); } else { Sistema CifrarContrasena = new Sistema(); string ContrasenaCifrada = CifrarContrasena.CifrarContrasena(Contrasena); File.WriteAllText(Url, Rut + "{" + Nombre + "{" + Apellido + "{" + Email + "{" + ContrasenaCifrada + "{" + carrera.Text + "{Estudiante"); MessageBox.Show("Su Usuario se Registro Correctamente"); this.Hide(); Inicio_Sesion inicio_Sesion = new Inicio_Sesion(); inicio_Sesion.Show(); } } else { MessageBox.Show("No ha seleccionado carrera"); } } else { MessageBox.Show("No ha creado una contaseƱa"); } } else { MessageBox.Show("No ha ingresado su email"); } } else { MessageBox.Show("No ha ingresado su Apellido"); } } else { MessageBox.Show("No ha ingresado su Nombre"); } } else { MessageBox.Show("No ha ingresado su Rut"); } }