Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/play/zoomlogin refactor1 #1554

Merged
merged 11 commits into from
Oct 17, 2024
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
Loading