-
Notifications
You must be signed in to change notification settings - Fork 7
/
faq.php
110 lines (84 loc) · 4.91 KB
/
faq.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
<?php
//To Handle Session Variables on This Page
session_start();
//Including Database Connection From db.php file to avoid rewriting in all files
require_once("db.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php
include 'php/head.php'
?>
<title>Placement Portal</title>
</head>
<body>
<?php
include 'php/header.php'
?>
<section id="faq" class="faq">
<div class="container-fluid" data-aos="fade-up">
<div class="row gy-4">
<div class="col-lg-7 d-flex flex-column justify-content-center align-items-stretch order-2 order-lg-1">
<div class="content px-xl-5">
<h3>Frequently Asked <strong>Questions</strong></h3>
<p>
Any queries or doubts regarding the<strong> Placement Portal </strong> will be addressed over here students might get confused regarding the placement portal and may have may have queries to be solved.
</div>
<div class="accordion accordion-flush px-xl-5" id="faqlist">
<div class="accordion-item" data-aos="fade-up" data-aos-delay="200">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-1">
<i class="bi bi-question-circle question-icon"></i>
What is the objective of this portal ?
</button>
</h3>
<div id="faq-content-1" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
The Placement Cell plays a crucial role in locating job opportunities for under graduates and post graduates passing out from the college by keeping in touch with reputed firms and industrial establishments.
The placement cell operates round the year to facilitate contacts between companies and graduates. The number of students placed through the campus interviews is continuously rising.
</div>
</div>
</div><!-- # Faq item-->
<div class="accordion-item" data-aos="fade-up" data-aos-delay="300">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-2">
<i class="bi bi-question-circle question-icon"></i>
Do you find any problem during login or registration ?
</button>
</h3>
<div id="faq-content-2" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Try login using your correct credentials. If you are having any trouble during registration, you can reach out to us via the contact page.
</div>
</div>
</div><!-- # Faq item-->
<div class="accordion-item" data-aos="fade-up" data-aos-delay="400">
<h3 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq-content-3">
<i class="bi bi-question-circle question-icon"></i>
How much time, one need to wait for the account approval ?
</button>
</h3>
<div id="faq-content-3" class="accordion-collapse collapse" data-bs-parent="#faqlist">
<div class="accordion-body">
Once the Training and placement officer approves your candidature, then you will be able to login successfully using your credentials.
</div>
</div>
</div><!-- # Faq item-->
<!-- # Faq item-->
<!-- # Faq item-->
</div>
</div>
<div class="col-lg-5 align-items-stretch order-1 order-lg-2 img" style='background-image: url("assets/img/faqq.jpg");'> </div>
</div>
</div>
</section>
<?php
include 'php/footer.php'
?>
</body>
</html>