changed logo filepath
|
Before Width: | Height: | Size: 175 KiB After Width: | Height: | Size: 175 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
|
|
@ -22,7 +22,7 @@ const Sidebar: React.FC<SidebarProps> = ({ data }) => {
|
||||||
return (
|
return (
|
||||||
<div className={styles.sidebarContainer}>
|
<div className={styles.sidebarContainer}>
|
||||||
<div className={styles.logoContainer}>
|
<div className={styles.logoContainer}>
|
||||||
<img src="..\..\..\src\assets\logos\PowerOn_transparent.png" alt="Logo" className={styles.logo} />
|
<img src="/logos/PowerOn_transparent.png" alt="Logo" className={styles.logo} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ import { loginRequest } from '../auth/authConfig';
|
||||||
import { useNavigate, useLocation } from 'react-router-dom';
|
import { useNavigate, useLocation } from 'react-router-dom';
|
||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
import styles from './Login.module.css';
|
import styles from './Login.module.css';
|
||||||
import agentDiagram from '../assets/logos/Frame 43.png';
|
import agentDiagram from '/logos/Frame 43.png';
|
||||||
import logo from '../assets/logos/PowerOn.png';
|
import logo from '/logos/PowerOn.png';
|
||||||
import { useAuth, useMsalAuth } from '../hooks/useAuthentication';
|
import { useAuth, useMsalAuth } from '../hooks/useAuthentication';
|
||||||
|
|
||||||
function Login() {
|
function Login() {
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
import { useState } from 'react';
|
import { useState } from 'react';
|
||||||
import { useNavigate } from 'react-router-dom';
|
import { useNavigate } from 'react-router-dom';
|
||||||
import styles from './Register.module.css';
|
import styles from './Register.module.css';
|
||||||
import logo from '../assets/logos/PowerOn.png';
|
import logo from '/logos/PowerOn.png';
|
||||||
import agentDiagram from '../assets/logos/Frame 43.png';
|
import agentDiagram from '/logos/Frame 43.png';
|
||||||
import { useRegister, useMsalRegister } from '../hooks/useAuthentication';
|
import { useRegister, useMsalRegister } from '../hooks/useAuthentication';
|
||||||
|
|
||||||
interface RegisterFormData {
|
interface RegisterFormData {
|
||||||
|
|
|
||||||