Files
front-AT/app/Inscritos/page.tsx
T
2025-09-08 19:35:24 -04:00

49 lines
1.2 KiB
TypeScript

import SearchUser from "../Components/SearchUser/searchUser";
export default function Page() {
return (
<section className='containerSection'>
<h2 className='title'> INSCRITOS </h2>
<form className="containerForm">
<label>Seleccione el periodo</label>
<div className="groupInput">
<select
>
<option value="">-- Seleccione el periodo --</option>
<option value="15">1 </option>
<option value="30">2 </option>
<option value="45">3 </option>
<option value="60">4 </option>
<option value="90">5 </option>
<option value="120">6 </option>
</select>
<button
className='button buttonSearch'
type='submit'
>Buscar
</button>
</div>
</form>
<div className="tableContainer">
<table >
<thead>
<tr>
<th>Carrera</th>
<th>Windows</th>
<th>Macintosh</th>
<th>Linux</th>
<th>Profesores</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</section>
);
}
//IO