new route
This commit is contained in:
@@ -5,7 +5,7 @@ export default function Page() {
|
||||
<section className='containerSection'>
|
||||
<h2 className='title'> AGREGAR TIEMPO </h2>
|
||||
|
||||
<SearchUser/>
|
||||
<SearchUser />
|
||||
</section>
|
||||
|
||||
);
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
import SearchUser from "../Components/SearchUser/searchUser";
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<section className='containerSection'>
|
||||
<h2 className='title'> Cambiar contraseña </h2>
|
||||
|
||||
<SearchUser/>
|
||||
</section>
|
||||
|
||||
);
|
||||
}
|
||||
//IO
|
||||
@@ -81,7 +81,7 @@ function BarNavigation() {
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li className={`subMenu ${openSubMenu === 2 ? "open" : ""}`}>
|
||||
<li className={`subMenu ${openSubMenu === 3 ? "open" : ""}`} onClick={() => toggleSubMenu(3)}>
|
||||
Reportes
|
||||
<ul>
|
||||
<Link href="/Recibo">
|
||||
@@ -95,13 +95,15 @@ function BarNavigation() {
|
||||
</Link>
|
||||
</ul>
|
||||
</li>
|
||||
<Link href="/QuitarSancion" className={`subMenu ${openSubMenu === 2 ? "open" : ""}`}>
|
||||
<Link href="/QuitarSancion" className={`subMenu`}>
|
||||
<li>
|
||||
Quitar sancion
|
||||
</li>
|
||||
</Link>
|
||||
<li className={`subMenu ${openSubMenu === 2 ? "open" : ""}`}>
|
||||
Cambiar contraseña
|
||||
<li className={`subMenu`}>
|
||||
<Link href="CambiarPass">
|
||||
Cambiar contraseña
|
||||
</Link>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
'use client'
|
||||
import { useState } from "react";
|
||||
import Information from "../Information/information";
|
||||
|
||||
function SearchUser() {
|
||||
const [numAccount, setNumAccount] = useState('');
|
||||
return (
|
||||
@@ -29,13 +27,6 @@ function SearchUser() {
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<Information
|
||||
NoCuenta="idcuanta"
|
||||
Nombre="juan"
|
||||
Carrera="carrera"
|
||||
Credito="credito"
|
||||
/>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -6,6 +6,7 @@ import Impressions from "../Components/Impressions/impressions";
|
||||
import Toggle from "../Components/Toggle/Toggle";
|
||||
|
||||
import "@/app/globals.css";
|
||||
import Information from "../Components/Information/information";
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
@@ -13,6 +14,13 @@ export default function Page() {
|
||||
<h2 className="title">IMPRESIONES Y PLOTEO</h2>
|
||||
<SearchUser />
|
||||
|
||||
<Information
|
||||
NoCuenta="idcuanta"
|
||||
Nombre="juan"
|
||||
Carrera="carrera"
|
||||
Credito="credito"
|
||||
/>
|
||||
|
||||
<Toggle
|
||||
defaultView="1"
|
||||
options={[
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
'use client';
|
||||
import Information from "../Components/Information/information";
|
||||
import Receipt from "../Components/Receipt/Receipt";
|
||||
import SearchUser from "../Components/SearchUser/searchUser";
|
||||
import Selection from "../Components/Selection/Selection";
|
||||
@@ -9,11 +10,19 @@ export default function Page() {
|
||||
return (
|
||||
<section className='containerSection'>
|
||||
<h2 className='title'> INSCRIPCION </h2>
|
||||
|
||||
<SearchUser />
|
||||
|
||||
<Information
|
||||
NoCuenta="idcuanta"
|
||||
Nombre="juan"
|
||||
Carrera="carrera"
|
||||
Credito="credito"
|
||||
/>
|
||||
|
||||
<StepNavigator totalSteps={2} onFinish={() => console.log()}>
|
||||
<Selection/>
|
||||
<Receipt />
|
||||
<Selection />
|
||||
<Receipt />
|
||||
</StepNavigator>
|
||||
|
||||
</section>
|
||||
|
||||
@@ -3,11 +3,9 @@ import SearchUser from "../Components/SearchUser/searchUser";
|
||||
export default function Page() {
|
||||
return (
|
||||
<section className='containerSection'>
|
||||
<h2 className='title'> QuitarSanciones </h2>
|
||||
|
||||
<h2 className='title'> Quitar Sanciones </h2>
|
||||
<SearchUser/>
|
||||
</section>
|
||||
|
||||
);
|
||||
}
|
||||
//IO
|
||||
Reference in New Issue
Block a user