add form for door lock charge report
This commit is contained in:
@@ -1,16 +1,41 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
|
|
||||||
|
import { Container, Form } from "semantic-ui-react";
|
||||||
|
|
||||||
import MainMenu from '../../components/MainMenu';
|
import MainMenu from '../../components/MainMenu';
|
||||||
|
|
||||||
class DoorLockCharges extends Component {
|
class DoorLockCharges extends Component {
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
return (
|
return (
|
||||||
<div>
|
<Container>
|
||||||
<MainMenu/>
|
<MainMenu/>
|
||||||
<h3>Door Lock Charges</h3>
|
<h3>Door Lock Charges</h3>
|
||||||
<hr/>
|
<hr/>
|
||||||
</div>
|
<Form>
|
||||||
|
<Form.Group widths="equal">
|
||||||
|
<Form.Input
|
||||||
|
fluid
|
||||||
|
required
|
||||||
|
label="Start date"
|
||||||
|
type="date"
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
fluid
|
||||||
|
required
|
||||||
|
label="End date"
|
||||||
|
type="date"
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Input
|
||||||
|
fluid
|
||||||
|
required
|
||||||
|
label="Select DLock file"
|
||||||
|
type="file"
|
||||||
|
/>
|
||||||
|
<Form.Button>Generate Report</Form.Button>
|
||||||
|
</Form>
|
||||||
|
</Container>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user