source: frontend/src/Components/Tab/TabFormTransport.js@ 5528b99

Last change on this file since 5528b99 was 5528b99, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

revert

  • Property mode set to 100644
File size: 1.9 KB
Line 
1import React from "react";
2import { Button, Col, Container, Form, Row } from "react-bootstrap";
3import { HiMagnifyingGlass } from "react-icons/hi2"
4
5function TabFormTransport() {
6 return (
7 <Form>
8 <Row>
9 <Col>
10 <Form.Floating className="mb-3">
11 <Form.Control
12 size="md"
13 type="text"
14 placeholder="Од:"
15 id="floatingFrom"
16 ></Form.Control>
17 <label htmlFor="floatingFrom">Од:</label>
18 </Form.Floating>
19 </Col>
20 <Col>
21 <Form.Floating className="mb-3">
22 <Form.Control
23 size="md"
24 type="text"
25 placeholder="До:"
26 id="floatingTo"
27 ></Form.Control>
28 <label htmlFor="floatingTo">До:</label>
29 </Form.Floating>
30 </Col>
31 <Col>
32 <Form.Floating className="mb-3">
33 <Form.Control
34 size="md"
35 type="date"
36 placeholder="Датум:"
37 id="floatingDate"
38 ></Form.Control>
39 <label htmlFor="floatingDate">Датум:</label>
40 </Form.Floating>
41 </Col>
42 <Col>
43 <Form.Floating className="mb-3">
44 <Form.Control
45 size="md"
46 type="number"
47 placeholder="Број на патници:"
48 id="floatingPassengers"
49 ></Form.Control>
50 <label htmlFor="floatingPassengers">Број на патници:</label>
51 </Form.Floating>
52 <Form.Group className="my-1">
53 <Button type="submit" style={{backgroundColor: "#159895"}} size="lg">
54 <span className="ikona my-1"><HiMagnifyingGlass/></span>
55 <span className="ikona mx-3">Пребарај</span>
56 </Button>
57 </Form.Group>
58 </Col>
59 </Row>
60 </Form>
61 );
62}
63
64export default TabFormTransport;
Note: See TracBrowser for help on using the repository browser.