From 59b933dbb3a61b95fad67c410f5fe4be02126ab1 Mon Sep 17 00:00:00 2001 From: Yovan Martinez Date: Mon, 16 May 2022 17:32:14 -0400 Subject: [PATCH] Eliminado manage postulante --- src/main/webapp/manage_postulantes.jsp | 111 --------------------------------------------------------------------------------------------------------------- 1 file changed, 111 deletions(-) delete mode 100644 src/main/webapp/manage_postulantes.jsp diff --git a/src/main/webapp/manage_postulantes.jsp b/src/main/webapp/manage_postulantes.jsp deleted file mode 100644 index d9ae28b..0000000 --- a/src/main/webapp/manage_postulantes.jsp +++ /dev/null @@ -1,111 +0,0 @@ -<%@ page language="java" contentType="text/html; charset=UTF-8" -pageEncoding="UTF-8"%> - <%@ page import="java.sql.*,java.sql.Connection,java.sql.ResultSet,com.roshka.proyectofinal.DataBase"%> - - - - - - - - aceptar postulantes - - - -
- -
-

Lista de postulante

- - - - - - - - - - - - - - - - - <% - Connection con = DataBase.getConnection(); - Statement stmt = con.createStatement(); - ResultSet rs = stmt.executeQuery("SELECT * FROM postulante"); - while(rs.next()){ - %> - - - - - - - - - - - - - - - - <% - } - %> -
Id postulanteNombreApellidoNumero de CedulaCorreoTelefonoDireccion de domicilioExperiencia Labporal:Posee notebookBootcamp_idEstadoAceptar/Rechazar
- <%= rs.getInt("id") %> - - <%= rs.getString("nombre") %> - - <%= rs.getString("apellido") %> - - <%= rs.getInt("nro_cedula") %> - - <%= rs.getString("correo") %> - - <%= rs.getString("telefono") %> - - <%= rs.getString("direccion") %> - - <%= rs.getBoolean("experiencia_laboral") %> - - <%= rs.getBoolean("notebook") %> - - <%= rs.getInt("bootcamp_id") %> - - <% - String aceptado= ""; - if (rs.getBoolean("aceptado")){ - aceptado= "Aceptado"; - }else{ - aceptado="Rechazado"; - } - %> - <%= aceptado %> - -
- - <% - String accion = ""; - if (rs.getBoolean("aceptado")){ - accion= "Rechazar"; - }else{ - accion="Aceptar"; - } - %> - - -
- -
-
- -
- - - - \ No newline at end of file -- libgit2 0.26.0