diff --git a/src/components/Login/index.tsx b/src/components/Login/index.tsx new file mode 100644 index 00000000..e369f7c2 --- /dev/null +++ b/src/components/Login/index.tsx @@ -0,0 +1,29 @@ +import React from 'react'; +import PlexLoginButton from '../PlexLoginButton'; + +const Login: React.FC = () => { + return ( +
+
+
+ Overseerr +
+
+ would like to sign in to your Plex account +
+
+ + console.log(`auth token is: ${authToken}`) + } + /> +
+
+

+ ©2020 Overseerr. All rights reserved. +

+
+ ); +}; + +export default Login; diff --git a/src/pages/login.tsx b/src/pages/login.tsx new file mode 100644 index 00000000..5b390e2d --- /dev/null +++ b/src/pages/login.tsx @@ -0,0 +1,13 @@ +import React from 'react'; +import { NextPage } from 'next'; +import Login from '../components/Login'; + +const LoginPage: NextPage = () => { + return ( +
+ +
+ ); +}; + +export default LoginPage;