├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── img │ └── Arash.jpg └── index.html └── src ├── App.js ├── Components ├── Forms │ ├── FormInput │ │ ├── FormInput.jsx │ │ └── FormInput.module.css │ ├── Forms.module.css │ ├── LoginForm │ │ └── LoginForm.jsx │ └── RegisterForm │ │ └── RegisterForm.jsx ├── Panel │ ├── Panel.jsx │ ├── Panel.module.css │ ├── SideBarLinks │ │ ├── SideBarLink │ │ │ ├── SideBarLink.jsx │ │ │ └── SideBarLink.module.css │ │ ├── SideBarLinks.jsx │ │ └── SideBarLinks.module.css │ ├── UserCard │ │ └── UserCard.jsx │ ├── UserChangePassword │ │ └── UserChangePassword.jsx │ ├── UserInformation │ │ └── UserInformation.jsx │ └── UserProfile │ │ ├── UserProfile.jsx │ │ └── UserProfile.module.css └── Titles │ ├── Titles.jsx │ └── Titles.module.css ├── index.css ├── index.js └── utils └── storage.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/Arash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/public/img/Arash.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Components/Forms/FormInput/FormInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Forms/FormInput/FormInput.jsx -------------------------------------------------------------------------------- /src/Components/Forms/FormInput/FormInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Forms/FormInput/FormInput.module.css -------------------------------------------------------------------------------- /src/Components/Forms/Forms.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Forms/Forms.module.css -------------------------------------------------------------------------------- /src/Components/Forms/LoginForm/LoginForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Forms/LoginForm/LoginForm.jsx -------------------------------------------------------------------------------- /src/Components/Forms/RegisterForm/RegisterForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Forms/RegisterForm/RegisterForm.jsx -------------------------------------------------------------------------------- /src/Components/Panel/Panel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/Panel.jsx -------------------------------------------------------------------------------- /src/Components/Panel/Panel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/Panel.module.css -------------------------------------------------------------------------------- /src/Components/Panel/SideBarLinks/SideBarLink/SideBarLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/SideBarLinks/SideBarLink/SideBarLink.jsx -------------------------------------------------------------------------------- /src/Components/Panel/SideBarLinks/SideBarLink/SideBarLink.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/SideBarLinks/SideBarLink/SideBarLink.module.css -------------------------------------------------------------------------------- /src/Components/Panel/SideBarLinks/SideBarLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/SideBarLinks/SideBarLinks.jsx -------------------------------------------------------------------------------- /src/Components/Panel/SideBarLinks/SideBarLinks.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/SideBarLinks/SideBarLinks.module.css -------------------------------------------------------------------------------- /src/Components/Panel/UserCard/UserCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/UserCard/UserCard.jsx -------------------------------------------------------------------------------- /src/Components/Panel/UserChangePassword/UserChangePassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/UserChangePassword/UserChangePassword.jsx -------------------------------------------------------------------------------- /src/Components/Panel/UserInformation/UserInformation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/UserInformation/UserInformation.jsx -------------------------------------------------------------------------------- /src/Components/Panel/UserProfile/UserProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/UserProfile/UserProfile.jsx -------------------------------------------------------------------------------- /src/Components/Panel/UserProfile/UserProfile.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Panel/UserProfile/UserProfile.module.css -------------------------------------------------------------------------------- /src/Components/Titles/Titles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Titles/Titles.jsx -------------------------------------------------------------------------------- /src/Components/Titles/Titles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/Components/Titles/Titles.module.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UndeadMe/React-User-Panel/HEAD/src/utils/storage.js --------------------------------------------------------------------------------