1 <?php include(
'experience.php'); ?>
5 if(isset($_SESSION[
'loggedin']))
8 $user_email = $_SESSION[
'Logged_email'];
9 $student_id = $_SESSION[
'id'];
10 $name = $_SESSION[
'name'];
11 $roll = $_SESSION[
'roll'];
17 <title>Placement Experience | Share</title>
19 <meta charset=
"utf-8">
20 <meta name=
"viewport" content=
"width=device-width, initial-scale=1, shrink-to-fit=no">
21 <link rel=
"stylesheet" href=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity=
"sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin=
"anonymous">
23 <link rel=
"stylesheet" href=
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
26 <link href=
"https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel=
"stylesheet">
27 <link href=
"https://fonts.googleapis.com/css2?family=Nunito:wght@800&family=Roboto+Mono&display=swap" rel=
"stylesheet">
28 <link href=
"https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel=
"stylesheet">
29 <link rel=
"stylesheet" type=
"text/css" href=
"css/style.css">
30 <link rel=
"stylesheet" href=
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
37 <div
class=
"col-sm-3" style=
"left:0px;">
38 <div
class=
"container-fluid sidenav">
39 <a href=
"mainpage.php"><img src=
"img/logoo.png" style=
"width:100px; margin-top:15px;"></a>
43 <a style=
"text-decoration: none;" href=
"https://www.cse.iitb.ac.in" target=
"_blank">
44 <h6 style=
"text-align: center;">Department of</h6>
45 <h6 style=
"text-align: center;">Computer Science and Engineering</h6>
46 <h5 style=
"text-align: center;">IIT Bombay</h5>
51 <li><a href=
"mainpage.php"> HOME </a></li>
52 <li><a href=
"posts.php"> POSTS </a></li>
53 <li><a href=
"exp_form.php">SHARE</a></li>
54 <li><a href=
"profile.php"> PROFILE </a></li>
58 <h5>Important Links</h5>
60 <li style=
"font-size:10px;"><a href=
"http://www.iitb.ac.in/" target=_blank> IITB Home</a></li>
61 <li style=
"font-size:10px;"><a href=
"https://www.cse.iitb.ac.in/"> CSE@IITB </a></li>
62 <li style=
"font-size:10px;"><a href=
"https://asc.iitb.ac.in/"> ASC </a></li>
69 <div
class=
"container-fluid col-md-8 whole" style=
"margin-top:0px;">
72 <div
class=
"col-sm-8 main" id=
"title">
73 <img src=
"img/heading_trans.png" alt=
"placementExperience" style=
"align-content: center; margin-left: 25%; margin-right: 25%;">
75 <div
class=
"col-sm-4" style=
"left:0px; padding-top:20px; vertical-align: center;">
76 <button
id=
"logout" type=
"button" class=
"btn btn-info btn-round" style=
"float:right;">
79 <a href=
"profile.php"><i
class=
"fa fa-user-circle-o" style=
"font-size:36px; float:right; padding-right:10px;" ></i></a>
84 <h2 style=
"text-align: center;"><b>Experience Form</b></h2>
86 <div
class=
"bg-white p-5 mb-5">
87 <form action=
"experience.php" method=
"post">
88 <div
class=
"form-group">
89 <label
for=
"name">Name:</label>
90 <input type=
"hidden" name=
"student_id" value=
"<?= ($student_id) ?: $student_id ?>">
91 <input type=
"text" class=
"form-control" placeholder=
"Enter full name" id=
"name" name=
"name" required value=
"<?= ($name) ?: $name ?>" readonly>
93 <div
class=
"form-group">
94 <label
for=
"roll">Roll No:</label>
95 <input type=
"text" class=
"form-control" placeholder=
"Enter CSE Roll number" id=
"roll" name=
"roll" required value=
"<?= ($roll) ?: $roll ?>" readonly>
97 <div
class=
"form-group">
98 <label
for=
"email">Email address:</label>
99 <input type=
"email" class=
"form-control" placeholder=
"Enter email" id=
"email" name=
"email" required value=
"<?= ($user_email) ?: $user_email ?>" readonly>
101 <div
class=
"form-group">
102 <label
for=
"course">Courses Taken (all semesters):</label>
103 <input type=
"text" class=
"form-control" placeholder=
"Enter comma separated course codes ( eg: CS601,CS725 )" id=
"course" name=
"coursetaken" required>
105 <div class=
"form-group">
106 <label for=
"company">Company Name:</label>
107 <input type=
"text" class=
"form-control" placeholder=
"Enter company's official name" id=
"company" name=
"companyname" required>
110 <h5>Rounds provided by company:</h5>
111 <div class=
"custom-control custom-checkbox mb-3">
112 <input type=
"checkbox" class=
"custom-control-input" value=
"Written/Aptitude Round" id=
"written" name=
"roundprovided[]">
113 <label class=
"custom-control-label" for=
"written">Written/Aptitude Round</label>
115 <div class=
"custom-control custom-checkbox mb-3">
116 <input type=
"checkbox" class=
"custom-control-input" id=
"coding" name=
"roundprovided[]" value=
"Coding Round">
117 <label class=
"custom-control-label" for=
"coding">Coding Round</label>
119 <div class=
"custom-control custom-checkbox mb-3">
120 <input type=
"checkbox" class=
"custom-control-input" id=
"gd" name=
"roundprovided[]" value=
"Group Discussion">
121 <label class=
"custom-control-label" for=
"gd">Group Discussion</label>
123 <div class=
"custom-control custom-checkbox mb-3">
124 <input type=
"checkbox" class=
"custom-control-input" id=
"int1" name=
"roundprovided[]" value=
"1st Interview Round">
125 <label class=
"custom-control-label" for=
"int1">1st Interview Round</label>
127 <div class=
"custom-control custom-checkbox mb-3">
128 <input type=
"checkbox" class=
"custom-control-input" id=
"int2" name=
"roundprovided[]" value=
"2nd Interview (HR) Round">
129 <label class=
"custom-control-label" for=
"int2">2nd Interview (HR) Round</label>
132 <h5>Rounds you have cleared:</h5>
133 <div class=
"custom-control custom-checkbox mb-3">
134 <input type=
"checkbox" class=
"custom-control-input" id=
"written2" name=
"roundcleared[]" value=
"Written/Aptitude Round">
135 <label class=
"custom-control-label" for=
"written2">Written/Aptitude Round</label>
137 <div class=
"custom-control custom-checkbox mb-3">
138 <input type=
"checkbox" class=
"custom-control-input" id=
"coding2" name=
"roundcleared[]" value=
"Coding Round">
139 <label class=
"custom-control-label" for=
"coding2">Coding Round</label>
141 <div class=
"custom-control custom-checkbox mb-3">
142 <input type=
"checkbox" class=
"custom-control-input" id=
"gd2" name=
"roundcleared[]" value=
"Group Discussion">
143 <label class=
"custom-control-label" for=
"gd2">Group Discussion</label>
145 <div class=
"custom-control custom-checkbox mb-3">
146 <input type=
"checkbox" class=
"custom-control-input" id=
"int12" name=
"roundcleared[]" value=
"1st Interview Round">
147 <label class=
"custom-control-label" for=
"int12">1st Interview Round</label>
149 <div class=
"custom-control custom-checkbox mb-3">
150 <input type=
"checkbox" class=
"custom-control-input" id=
"int22" name=
"roundcleared[]" value=
"2nd Interview (HR) Round">
151 <label class=
"custom-control-label" for=
"int22">2nd Interview (HR) Round</label>
154 <div class=
"md-form mb-4 green-textarea active-green-textarea">
155 <label for=
"story">Your Story/Experience:</label>
156 <textarea id=
"story" class=
"md-textarea form-control" rows=
"12" placeholder=
"Please restrict yourself to 100 words . . ." name=
"story" required></textarea>
159 <input class=
"btn btn-primary" type=
"submit" name=
"submit" value=
"Submit">
167 <p style=
"color:#e88924">Ⓒ Copyright@IITB</p>
170 <!-- Bootstrap scripts -->
172 <script src=
"https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity=
"sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin=
"anonymous"></script>
173 <script src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity=
"sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin=
"anonymous"></script>
174 <script src=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity=
"sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin=
"anonymous"></script>
176 <script type=
"text/javascript">
177 document.getElementById(
"logout").onclick =
function () {
178 location.href =
"logout.php";
189 header(
"location: index.php");