Last change
on this file since efaa053 was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 13 months ago |
images upload/download impl, other fixes
|
-
Property mode
set to
100644
|
File size:
771 bytes
|
Line | |
---|
1 | import React from "react";
|
---|
2 | import LoginForm from "../Components/Login/LoginForm";
|
---|
3 | import { Container } from "react-bootstrap";
|
---|
4 | import Navigation from "../Components/Layout/Navbar/Navigation";
|
---|
5 | import RegistrationForm from "../Components/Registration/RegistrationForm";
|
---|
6 |
|
---|
7 | const RegistrationPage = () => {
|
---|
8 | document.body.style.backgroundColor = "#159895";
|
---|
9 | document.body.style.marginTop = "auto";
|
---|
10 | document.body.style.marginBottom = "auto";
|
---|
11 | return (
|
---|
12 | <>
|
---|
13 | {" "}
|
---|
14 | <Container fluid className="px-0">
|
---|
15 | <Navigation />
|
---|
16 | </Container>
|
---|
17 | <Container className="mt-5">
|
---|
18 | <Container style={{ width: "70%" }}>
|
---|
19 | <RegistrationForm></RegistrationForm>
|
---|
20 | </Container>
|
---|
21 | </Container>
|
---|
22 | </>
|
---|
23 | );
|
---|
24 | };
|
---|
25 |
|
---|
26 | export default RegistrationPage;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.