2020-06-25 22:43:26 +02:00
|
|
|
import React from "react";
|
2020-06-29 21:34:43 +02:00
|
|
|
import {Form, Col, Button} from "react-bootstrap";
|
|
|
|
import "./GeneralSettings.css"
|
2020-06-25 22:43:26 +02:00
|
|
|
|
|
|
|
class GeneralSettings extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
Generalsettings here
|
2020-06-29 21:34:43 +02:00
|
|
|
<div className='GeneralForm'>
|
|
|
|
<Form>
|
|
|
|
<Form.Row>
|
|
|
|
<Form.Group as={Col} controlId="formGridEmail">
|
|
|
|
<Form.Label>Video Path</Form.Label>
|
|
|
|
<Form.Control type="text" placeholder="todo password here" />
|
|
|
|
</Form.Group>
|
|
|
|
|
|
|
|
<Form.Group as={Col} controlId="formGridPassword">
|
|
|
|
<Form.Label>Password</Form.Label>
|
|
|
|
<Form.Control type="password" placeholder="Password" />
|
|
|
|
</Form.Group>
|
|
|
|
</Form.Row>
|
|
|
|
|
|
|
|
<Form.Group controlId="formGridAddress1">
|
|
|
|
<Form.Label>Address</Form.Label>
|
|
|
|
<Form.Control placeholder="1234 Main St" />
|
|
|
|
</Form.Group>
|
|
|
|
|
|
|
|
<Button variant="primary" type="submit">
|
|
|
|
Submit
|
|
|
|
</Button>
|
|
|
|
</Form>
|
|
|
|
</div>
|
2020-06-25 22:43:26 +02:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default GeneralSettings;
|