diff --git a/.gitignore b/.gitignore index 9c0fbc2..98c1736 100644 --- a/.gitignore +++ b/.gitignore @@ -136,3 +136,5 @@ data/ config/settings.py .idea/* +node_modules/* +package-lock.json \ No newline at end of file diff --git a/react-ui/src/App.js b/react-ui/src/App.js index e6af382..8774318 100644 --- a/react-ui/src/App.js +++ b/react-ui/src/App.js @@ -1,28 +1,40 @@ import React from 'react'; import './App.css'; -import Linecharts from './Linechart' -import LinechartQuery1 from "./LinechartQuery1"; -import { BrowserRouter as Router, Switch, Route, Link } from 'react-router-dom'; + +import { BrowserRouter as Router } from 'react-router-dom'; +import { Form, FormGroup, Input } + from 'reactstrap'; + function App() { return (
- {/*
*/} - Line Chart - {/*
*/} -
- - - -
-
- - - +
+

+

+ Bank of Czech Republic +





+

Welcome

+

+ + +
+ + + + + Login +

+ Forgot password?                     + Forgot Username? +

+
+ Sign up
- +
+
); } diff --git a/react-ui/src/home.js b/react-ui/src/home.js new file mode 100644 index 0000000..521f7ee --- /dev/null +++ b/react-ui/src/home.js @@ -0,0 +1,30 @@ +import React from 'react'; +import './App.css'; +import Linecharts from './Linechart' +import LinechartQuery1 from "./LinechartQuery1"; +import { BrowserRouter as Router, Switch, Route, Link } from 'react-router-dom'; + + +function App() { + return ( +
+ + {/*
*/} + Line Chart + {/*
*/} +
+ + + +
+
+ + + +
+
+
+ ); +} + +export default App; diff --git a/react-ui/src/index.css b/react-ui/src/index.css index ec2585e..c838d79 100644 --- a/react-ui/src/index.css +++ b/react-ui/src/index.css @@ -11,3 +11,13 @@ code { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace; } +.Login{ + width: 20%; + + padding: 15px; + height: 100%; + margin-bottom: 40px; + margin-left: auto; + margin-right: auto; + margin-top: auto; +}