Skip to content
Snippets Groups Projects
Commit aa757a18 authored by rob's avatar rob
Browse files

Add dummy listings

parent 800ec930
No related branches found
No related tags found
7 merge requests!65Master,!50Change navigation buttons to reflect user feedback,!47fix profuction sort button flickering issue,!43Recruiter: Add staring and evidence ;Student: add Dashboard Timeline; Add univseral navbar,!36Create pages from mockups and link with Prisma Merge,!28Master,!27Recruiter dashboard
Pipeline #422675 passed
......@@ -4,11 +4,11 @@ import "bootstrap/dist/css/bootstrap.min.css"
import Nav from 'react-bootstrap/Nav';
import Button from 'react-bootstrap/Button';
import ListGroup from "react-bootstrap/ListGroup";
import { Container, Navbar, Card } from "react-bootstrap";
import { Container, Navbar, Card, ListGroupItem } from "react-bootstrap";
function recruiterDashboard() {
const handleClick = () => {
alert("Going to Intern Page!")
window.location.href = "./recruiterInternship";
}
return (
......@@ -28,13 +28,41 @@ const handleClick = () => {
</Navbar>
{/* Job Listings List */}
<Container>
<Card>
<Container style={{height: "100px"}}>
<Card className="h-100">
<Card.Header className="d-flex justify-content-between">
<Button>Sort</Button>
<h4>My Listings</h4>
<Button>New Post</Button>
</Card.Header>
<ListGroup>
<ListGroupItem>
<Container className="d-flex justify-content-between" onClick={handleClick}>
<p className="text-danger">Applications Closed</p>
<p className="text-center">IT Intern</p>
<p className="text-success">3/50 Applications</p>
</Container>
</ListGroupItem>
<ListGroupItem>
<Container className="d-flex justify-content-between" onClick={handleClick}>
<p className="text-success">Applications Open</p>
<p className="text-center">Softare Engineer Intern</p>
<p className="text-warning">30/35 Applications</p>
</Container>
</ListGroupItem>
<ListGroupItem>
<Container className="d-flex justify-content-between" onClick={handleClick}>
<p className="text-muted">Draft</p>
<p className="text-center">Management Intern</p>
<p></p>
</Container>
</ListGroupItem>
</ListGroup>
</Card>
</Container>
</main>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment