Skip to content

Commit

Permalink
Feature/play/zoomlogin refactor1 (#1554)
Browse files Browse the repository at this point in the history
* feat(play/zoomlogin): add new Zoom login and chatbot clone project

* * fix(play/schulte-tables): fix plain class name to prevent from potential overriding issue

* refactor cursor pointer

* remove unused file

* refactor label htmlFor

* * refactor: remove unused files (#1554)

* refactor: remove unused files

---------

Co-authored-by: Priyankar Pal <[email protected]>

---------

Co-authored-by: Priyankar Pal <[email protected]>
  • Loading branch information
day-lee and priyankarpal authored Oct 17, 2024
1 parent 56424d2 commit dc58208
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 4 deletions.
20 changes: 20 additions & 0 deletions src/plays/zoomlogin/MainPage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { BrowserRouter, Route, Routes } from 'react-router-dom';
import App from './components/App';
import HomePage from './components/HomePage';
import LinkedinPage from './components/Linkedin/LinkedinPage';
import ZoomPage from './components/Zoom/ZoomPage';

export function MainPage() {
return (
<BrowserRouter basename="/react-login-form">
<App>
<Routes>
<Route element={<HomePage />} path="/" />
<Route element={<LinkedinPage />} path="/linkedin" />
<Route element={<ZoomPage />} path="/zoom" />
</Routes>
</App>
</BrowserRouter>
);
}
export default MainPage;
Binary file added src/plays/zoomlogin/assets/apple-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/plays/zoomlogin/assets/apple-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/plays/zoomlogin/assets/copyright.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/plays/zoomlogin/assets/facebook-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/plays/zoomlogin/assets/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/plays/zoomlogin/assets/google-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/plays/zoomlogin/assets/google-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/plays/zoomlogin/assets/linkedin-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/plays/zoomlogin/assets/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/plays/zoomlogin/assets/linkedinImg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/plays/zoomlogin/components/Zoom/ZoomSignin.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function ZoomSignin({ helpHandle }) {
{isEmailFocused && (
<label
className="absolute text-slate-500 pt-1 pb-2 left-0 top-0 text-xs mb-1 px-2"
htmlFor="email"
htmlFor="zoomemail"
>
Email Address
</label>
Expand All @@ -210,7 +210,7 @@ function ZoomSignin({ helpHandle }) {
{isPasswordFocused && (
<label
className="absolute text-slate-500 pt-1 pb-2 left-0 top-0 text-xs mb-1 px-2"
htmlFor="email"
htmlFor="zoompassword"
>
Password
</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ const InitialButtonOptions = (props) => {
};

return (
<div className="text-[#0e72ed] ml-[4rem] font-extrabold text-[13px] sm:text-[14px]">
<div className="text-[#0e72ed] ml-[4rem] font-extrabold text-[14px]">
<button
aria-label="My Account is Locked"
className="inline-block border border-[#0e72ed] rounded-3xl px-4 py-1.5 m-1 hover:bg-[#0e72ed] hover:text-white hover:cursor-not-allowed"
className="inline-block border border-[#0e72ed] rounded-3xl px-4 py-1.5 m-1 hover:bg-[#0e72ed] hover:text-white hover:cursor-pointer"
title="My Account is Locked"
onClick={() => handleAccountLockedClick('My Account is Locked')}
>
Expand Down

0 comments on commit dc58208

Please sign in to comment.