diff --git a/app/CambiarPass/page.tsx b/app/CambiarPass/page.tsx
index a602db8..1c3915e 100644
--- a/app/CambiarPass/page.tsx
+++ b/app/CambiarPass/page.tsx
@@ -1,3 +1,4 @@
+import ChangePassword from "../Components/ChangePassword/changePassword";
import SearchUser from "../Components/SearchUser/searchUser";
export default function Page() {
@@ -5,7 +6,7 @@ export default function Page() {
);
diff --git a/app/Components/BarNavigation/BarNavigation.css b/app/Components/BarNavigation/BarNavigation.css
index c561f3a..470c8e4 100644
--- a/app/Components/BarNavigation/BarNavigation.css
+++ b/app/Components/BarNavigation/BarNavigation.css
@@ -19,8 +19,7 @@
}
.barNavigation li:hover {
- background-color: #f9f9f9;
- color: rgba(0, 61, 121, 1);
+ background-color: #d59f0f;
}
.barNavigation ul.active {
@@ -94,10 +93,6 @@
color: rgb(255, 255, 255);
}
-.subMenu:hover span {
- color: rgba(0, 61, 121, 1);
-}
-
.containerLinks {
padding: 0 !important;
}
@@ -111,10 +106,6 @@
height: 100%;
}
-.subMenu:hover .links {
- color: rgba(0, 61, 121, 1);
-}
-
@media (max-width: 800px) {
.menuToggle {
diff --git a/app/Components/ChangePassword/changePassword.tsx b/app/Components/ChangePassword/changePassword.tsx
new file mode 100644
index 0000000..0239690
--- /dev/null
+++ b/app/Components/ChangePassword/changePassword.tsx
@@ -0,0 +1,84 @@
+
+function ChangePassword() {
+ return (
+ }}
+ >
+
+
+
+ setPassword(e.target.value)}
+ placeholder='Coloca tu contraseña...'
+ />
+ setShowPassword(!showPassword)}
+ //className={showPassword ? 'eyeOpen' : 'eyeClose'}
+ />
+
+
+
+
+ setPassword(e.target.value)}
+ placeholder='Coloca tu contraseña...'
+ />
+ setShowPassword(!showPassword)}
+ //className={showPassword ? 'eyeOpen' : 'eyeClose'}
+ />
+
+
+
+
+ setPassword(e.target.value)}
+ placeholder='Coloca tu contraseña...'
+ />
+ setShowPassword(!showPassword)}
+ //className={showPassword ? 'eyeOpen' : 'eyeClose'}
+ />
+
+
+
+
+
+
+
+
+ {/*message &&
+
+ {message}
+
+ */}
+
+ )
+}
+
+export default ChangePassword
\ No newline at end of file
diff --git a/app/Components/Footer/Footer.tsx b/app/Components/Footer/Footer.tsx
index 9fd3865..6f6fa16 100644
--- a/app/Components/Footer/Footer.tsx
+++ b/app/Components/Footer/Footer.tsx
@@ -2,8 +2,10 @@
function Footer() {
return (
)
}
diff --git a/app/Components/Login/Login.css b/app/Components/Login/Login.css
index acfadc0..bc42c63 100644
--- a/app/Components/Login/Login.css
+++ b/app/Components/Login/Login.css
@@ -2,13 +2,6 @@
width: 300px;
}
-.center{
- display: grid;
- grid-template-columns: auto 400px;
- justify-content: center;
- align-items: center;
-}
-
.relative {
position: relative;
}
diff --git a/app/Components/wave.module.css b/app/Components/Wave/wave.module.css
similarity index 83%
rename from app/Components/wave.module.css
rename to app/Components/Wave/wave.module.css
index 14a210b..70cc41f 100644
--- a/app/Components/wave.module.css
+++ b/app/Components/Wave/wave.module.css
@@ -11,23 +11,25 @@
.wave {
position: absolute;
- bottom: 0;
- width: 200%;
- height: 100%;
+ top: 0;
+ left: 0;
+ width: 160%;
+ height: 130%;
background: rgba(255, 255, 255, 0.5);
- border-radius: 100% 50%;
- animation: waveMove 8s linear infinite;
+ border-radius: 50% 50%;
+ animation: waveMove 6s linear infinite;
}
.wave:nth-child(2) {
+ top: -10;
background: rgba(255, 255, 255, 0.3);
- animation-duration: 10s;
+ animation-duration: 8s;
animation-delay: -2s;
}
.wave:nth-child(3) {
background: rgba(255, 255, 255, 0.2);
- animation-duration: 12s;
+ animation-duration: 10s;
animation-delay: -4s;
}
diff --git a/app/Components/wavesBack.tsx b/app/Components/Wave/wavesBack.tsx
similarity index 100%
rename from app/Components/wavesBack.tsx
rename to app/Components/Wave/wavesBack.tsx
diff --git a/app/globals.css b/app/globals.css
index 446577c..0523725 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -57,10 +57,16 @@ main {
}
footer {
+ display: flex;
+ justify-content: center;
text-align: center;
padding: 10px;
background-color: rgba(0, 61, 121, 1);
+}
+
+footer p {
color: white;
+ max-width: 1150px;
}
.container {
@@ -184,6 +190,14 @@ ul {
margin-bottom: 10px;
}
+.containerButton {
+ display: flex;
+ gap: 10px;
+ justify-content: start;
+ align-items: center;
+ width: 100%;
+}
+
.label {
font-size: 1rem;
font-weight: bold;
@@ -274,6 +288,12 @@ form {
border-bottom: 1px solid rgb(1, 92, 184);
}
+.center {
+ display: grid;
+ grid-template-columns: auto 400px;
+ justify-content: center;
+ align-items: center;
+}
@media (max-width: 800px) {
header {
@@ -332,4 +352,4 @@ form {
.container {
margin: 0;
}
-}
+}
\ No newline at end of file
diff --git a/app/layout.tsx b/app/layout.tsx
index 603cdb1..caa7961 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -4,7 +4,7 @@ import Header from "./Components/Header/Header";
import Footer from "./Components/Footer/Footer";
import BarNavigation from "./Components/BarNavigation/BarNavigation";
import "./globals.css";
-import WavesBackground from "./Components/wavesBack";
+import WavesBackground from "./Components/Wave/wavesBack";
const poppins = Poppins({
variable: "--font-poppins", // nombre de la variable CSS