-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathREADME.md
70 lines (42 loc) · 2.24 KB
/
README.md
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
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/home_before_login_jobseeker.png)
## Sign up
You can either sign up as company or a person who is looking for a job
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/sign_up.png)
## Login
You can either log in as company or a person who is looking for a job
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/login.png)
## Home after a job seeker logs in
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/home_after_login_jobseeker.png)
## Applying for a job
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/application.png)
## Post a review about website
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/post_review.png)
## Home after you log in as a company
The company will only see those jobs which they have posted.
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/home_for_company_after_login.png)
## 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
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/see_applicants.png)
## See resume of selected applicant
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/see_resume_of_applicants.png)
## Start interview with the applicant.
This webpage is under working in which company can have interview with the applicant on this same website.
![alt text](https://github.com/hamziqureshi/Python_Flask_Job_Portal/blob/master/Screenshots/start_interview.png)