passwort ändern

This commit is contained in:
2023-02-28 23:46:33 +01:00
parent 0ee583c662
commit f2fa8e46e9
8 changed files with 250 additions and 143 deletions

View File

@ -31,6 +31,7 @@ import { ModalsProvider } from '@mantine/modals';
import { NotificationsProvider } from '@mantine/notifications';
import { notificationAlert, notificationError, notificationSuccess } from './services/Notifications';
import DogNavbar from './components/DogNavbar';
import PasswordChange from './components/PasswordChange';
const App: React.FC = () =>
{
@ -118,6 +119,7 @@ const App: React.FC = () =>
<Route path="/pwreset/:pwtoken" element={<PasswordReset/>} />
<Route path="/wantnewpw" element={<WantNewPw/>} />
{user && <Route path="/upload" element={<FileUpload/>} />}
{user && <Route path="/chngpw" element={<PasswordChange/>} />}
{user && <Route path="/profil" element={<Profil/>} />}
</Routes>
</AppShell>