add a css file for general SettingsPage.js
add a basic form for videopath
This commit is contained in:
@@ -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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user