add a css file for general SettingsPage.js

add a basic form for videopath
This commit is contained in:
2020-06-29 21:34:43 +02:00
parent 791f2327e1
commit 08c2567551
4 changed files with 31 additions and 2 deletions

View File

@@ -1,4 +1,6 @@
import React from "react";
import {Form, Col, Button} from "react-bootstrap";
import "./GeneralSettings.css"
class GeneralSettings extends React.Component {
constructor(props) {
@@ -11,6 +13,30 @@ class GeneralSettings extends React.Component {
return (
<>
Generalsettings here
<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>
</>
);
}