[#50] AUTH UI Frissítés https://project.mdnd-it.cc/work_packages/50 #10
@@ -4,6 +4,8 @@ import AuthRegister from "./pages/Auth/AuthRegister";
|
|||||||
import AuthLogin from "./pages/Auth/AuthLogin";
|
import AuthLogin from "./pages/Auth/AuthLogin";
|
||||||
import EmailVerification from "./pages/Auth/EmailVerification";
|
import EmailVerification from "./pages/Auth/EmailVerification";
|
||||||
import Test from "./pages/Testing/Test";
|
import Test from "./pages/Testing/Test";
|
||||||
|
import ForgotPassword from "./pages/Auth/ForgotPassword";
|
||||||
|
import ResetPassword from "./pages/Auth/ResetPassword";
|
||||||
|
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
@@ -38,7 +40,10 @@ function App() {
|
|||||||
<Route path="/register" element={<AuthRegister />} />
|
<Route path="/register" element={<AuthRegister />} />
|
||||||
<Route path="/login" element={<AuthLogin />} />
|
<Route path="/login" element={<AuthLogin />} />
|
||||||
<Route path="/verify-email" element={<EmailVerification />} />
|
<Route path="/verify-email" element={<EmailVerification />} />
|
||||||
|
<Route path="/forgot-password" element={<ForgotPassword />} />
|
||||||
|
<Route path="/reset-password" element={<ResetPassword />} />
|
||||||
<Route path="/test" element={<Test />} />
|
<Route path="/test" element={<Test />} />
|
||||||
|
|
||||||
</Routes>
|
</Routes>
|
||||||
</Router>
|
</Router>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// src/assets/SerpentRace_Animation/SerpentRace_Animation.jsx
|
||||||
|
// Animációs kiírás: SerpentRace
|
||||||
|
|
||||||
import styles from "./Path.module.css";
|
import styles from "./Path.module.css";
|
||||||
import React, { useRef } from "react";
|
import React, { useRef } from "react";
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// src/assets/backgrounds/Background.jsx
|
||||||
|
// Kockás háttér, ami a mousemovera reagál
|
||||||
|
|
||||||
import React, { useEffect, useState } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
import { motion } from "framer-motion";
|
import { motion } from "framer-motion";
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
// src/assets/pictures/Logo.png
|
||||||
|
// Logo kép importálása és paraméterezése
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import logo from './Logo.png';
|
import logo from './Logo.png';
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ export default function Test() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="bg-red-100 text-white p-4">
|
<div className="bg-red-100 text-white p-4">
|
||||||
<p className="text-piros">asd</p>
|
<p className="text-piros">Test</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user