forked from hamziqureshi/Python_Flask_Job_Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.md
More file actions
70 lines (42 loc) · 2.24 KB
/
README.md
File metadata and controls
70 lines (42 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Python_Flask_Job_Portal
Job Portal Web App with Flask Python
Python 3.9
## Local Environment
### Install
1- Create a virtual environment
```virtualenv venv```
or
```python -m venv venv```
2- Activate it
```source venv/Scripts/activate``` (Windows)
```source venv/bin/activate``` (Linux)
3- Clone the repository and install the packages in the virtual env:
```pip install -r requirements.txt```
4- Run application
```python run.py```
# Screenshots
### Home

## Sign up
You can either sign up as company or a person who is looking for a job

## Login
You can either log in as company or a person who is looking for a job

## Home after a job seeker logs in

## Applying for a job

## Post a review about website

## Home after you log in as a company
The company will only see those jobs which they have posted.

## See as a company who has applied on you posted job
Only those who have applied on your specific posted jobs will be seen here

## See resume of selected applicant

## Start interview with the applicant.
This webpage is under working in which company can have interview with the applicant on this same website.
