2020-01-13 18:16:48 +01:00
|
|
|
import "../style.css";
|
|
|
|
import Header from './components/Header';
|
|
|
|
import LoginArea from './components/LoginArea';
|
|
|
|
import Footer from './components/Footer';
|
2020-01-13 12:54:17 +01:00
|
|
|
|
2020-01-13 16:20:19 +01:00
|
|
|
const Index = props => (
|
2020-01-13 18:16:48 +01:00
|
|
|
<div className="index">
|
2020-01-13 22:34:56 +01:00
|
|
|
<Header />
|
2020-01-13 18:16:48 +01:00
|
|
|
<div className="index-content">
|
2020-01-13 22:34:56 +01:00
|
|
|
<h1>Rejestracja do systemu Task-O!</h1>
|
2020-01-13 18:16:48 +01:00
|
|
|
<span className="login-areas">
|
|
|
|
<LoginArea accountType="developer"/>
|
|
|
|
<LoginArea accountType="company"/>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<Footer />
|
2020-01-13 12:54:17 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Index;
|