-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
138 lines (134 loc) · 4.49 KB
/
index.php
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<title>AIBot</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins&family=Roboto+Mono:wght@700&family=Roboto+Slab&family=Source+Code+Pro:wght@500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="css/index_style.css" />
</head>
<body>
<div class="navbar container-fluid">
<a href="login-recruiter.php" role="button" class="btn btn-lg">
LOGIN AS RECRUITER
</a>
<a href="login.php" role="button" class="btn btn-lg">
LOGIN AS APPLICANT
</a>
<a href="index.php" id="logo">AIBot</a>
</div>
<div class="container-fluid">
<div class="row row-1">
<center>
<h1 class="first">Get your dream job</h1>
<h1>without struggling with the interview rush using</h1>
<h1>our AI based Recruiter ChatBot!</h1>
<br />
<p>
A web-app to ease the workload of <br />the recruiters, and to make
the recruitement process hassle-free and transparent.
</p>
<br /><br /><br />
<a href="registration.php" class="btn btn-color btn-lg" role="button">
JOIN AS APPLICANT
</a>
<a
href="registration-recruiter.php"
class="btn btn-color btn-lg"
role="button"
>
JOIN AS RECRUITER
</a>
</center>
</div>
</div>
<div class="container-fluid tab2">
<div class="row row-3">
<center>
<br /><br />
<h2>How Does This Work?</h2>
<br />
<p>
The idea behind this app is to make the recruitement process easy,
not just for the recruiter, but also the applicant. Our ChatBot
shortlists the applicants on the basis of a test conversation. The
applicant is supposed to answer a set of questions posed by the
ChatBot and on the basis of that gets a score. The applicant
receives this score and is informed whether they are selected or not
with a set of feedback for future.
<br />
<br /><br /><br />
</p>
</center>
</div>
</div>
<div class="container-fluid tab3">
<div class="row row-2">
<center>
<br /><br />
<h2>Why AI Recruiter?</h2>
</center>
<br /><br />
<div class="row">
<div class="col-sm-6 cols">
<center>
<i class="fa fa-transgender-alt icons"></i>
<h3>Diverse</h3>
<p>
Due to being a bot, it does not hold any human biases<br />
which allows every candidate to get a fair chance
</p>
</center>
</div>
<div class="col-sm-6 cols">
<center>
<i class="fa fa-line-chart icons"></i>
<h3>Track progress</h3>
<p>
Helps applicants to keep track of their progress. <br />
This ensures that every application is being processed.
</p>
</center>
</div>
</div>
<br /><br /><br />
<div class="row">
<div class="col-sm-6 cols">
<center>
<i class="fa fa-fast-forward icons"></i>
<h3>Hassle-free</h3>
<p>
The process is very fast and hassle free<br />
for both the end users.
</p>
</center>
</div>
<div class="col-sm-6 cols">
<center>
<i class="fa fa-exchange icons"></i>
<h3>Transparency</h3>
<p>
It makes the whole recruitment <br />
process very transparent for the applicant.
</p>
</center>
</div>
</div>
<br /><br />
</div>
</div>
</body>
</html>