-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
91 changed files
with
13,177 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"CurrentProjectSetting": null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"ExpandedNodes": [], | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
$conn=mysqli_connect('localhost','root','','phpserver'); | ||
$name=$_GET['name']; | ||
$title=$_POST['title']; | ||
$mess=$_POST['message']; | ||
$sql="insert into board values('$name','$title','$mess' )"; | ||
mysqli_query($conn,$sql); | ||
echo"<script>alert('发送成功!'); | ||
window.location.href='board.php';</script>"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
<!DOCTYPE html> | ||
<html class="no-js" lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
<title></title> | ||
<meta name="robots" content="noindex, follow" /> | ||
<meta name="description" content=""> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<link rel="shortcut icon" type="image/x-icon" href="assets/images/favicon.png"> | ||
|
||
|
||
|
||
|
||
<link rel="stylesheet" href="assets/css/vendor/bootstrap.min.css"> | ||
|
||
|
||
<link rel="stylesheet" href="assets/css/vendor/font-awesome.min.css"> | ||
<link rel="stylesheet" href="assets/css/vendor/flaticon.css"> | ||
|
||
|
||
<link rel="stylesheet" href="assets/css/plugins/slick.css"> | ||
|
||
|
||
<link rel="stylesheet" href="assets/css/style.css"> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<header class="header"> | ||
<div class="container"> | ||
<div class="row justify-content-between align-items-center"> | ||
|
||
<div class="col"> | ||
<div class="header-logo"> | ||
<a href="index.php"> <span style="color: white; font-size: 30px; font-weight: 600;">CodeBells</span> </a> | ||
</div> | ||
</div> | ||
|
||
<div class="header-links col-auto order-lg-3"> | ||
<a href="#" data-toggle="modal" data-target="#loginSignupModal" data-target-sub="#login">Login</a> | ||
<span>or</span> | ||
<a href="#" data-toggle="modal" data-target="#loginSignupModal" data-target-sub="#signup">Sign up</a> | ||
</div> | ||
|
||
<nav id="main-menu" class="main-menu col-lg-auto order-lg-2"> | ||
<ul> | ||
<li class="has-children"><a href="index.php">Home</a> | ||
</li> | ||
<li class="has-children"><a href="job-list.php">Jobs</a> | ||
</li> | ||
<li><a href="company-list.php">Company</a> | ||
</li> | ||
<li><a href="#">Pages</a> | ||
<ul class="sub-menu"> | ||
<li><a href="about-us.html">About Us</a></li> | ||
<li><a href="faq.php">FAQ'S</a></li> | ||
</ul> | ||
</li> | ||
<li><a href="contact.html">Contact us</a></li> | ||
</ul> | ||
</nav> | ||
|
||
</div> | ||
|
||
</div> | ||
</header> | ||
|
||
<div class="loginSignupModal modal fade" id="loginSignupModal" tabindex="-1" role="dialog" aria-labelledby="loginSignupModal" aria-hidden="true"> | ||
<div class="modal-dialog modal-dialog-centered" role="document"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
|
||
<ul class="loginSignupNav nav"> | ||
<li><a class="nav-link active" data-toggle="tab" href="#login">Login</a></li> | ||
<li><a class="nav-link" data-toggle="tab" href="#signup">Sign up</a></li> | ||
</ul> | ||
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
|
||
</div> | ||
<div class="modal-body"> | ||
<div class="tab-content" id="myTabContent"> | ||
<div class="tab-pane fade show active" id="login"> | ||
<form action="login_check.php" method="POST"> | ||
<div class="row mb-n3"> | ||
<div class="col-12 mb-3"><input type="text" placeholder="Username" name="name"></div> | ||
<div class="col-12 mb-3"><input type="password" placeholder="Password" name="pass"></div> | ||
<div class="col-12 mb-3"> | ||
<div class="row justify-content-between mb-n2"> | ||
<div class="col-auto mb-2"> | ||
<div class="custom-control custom-checkbox"> | ||
<input type="checkbox" name="me" id="me" value="click" class="custom-control-input"> | ||
<label class="custom-control-label" for="me">Manager</label> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-12 mb-3"><input class="btn btn-primary w-100" type="submit" value="Login" name="sub"></div> | ||
</div> | ||
</form> | ||
</div> | ||
<div class="tab-pane fade" id="signup"> | ||
<form action="signin_check.php" method="POST"> | ||
<div class="row mb-n3"> | ||
<div class="col-12 mb-3"><input type="text" placeholder="Your Name" name="name"></div> | ||
<div class="col-12 mb-3"><input type="password" placeholder="Choose a Password" name="pass"></div> | ||
<div class="col-12 mb-3"><input type="text" placeholder="Location" name="loc"></div> | ||
<div class="col-12 mb-3"><input class="btn btn-primary w-100" type="submit" value="Sign Up" name="sub"></div> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="page-heading-section section bg-parallax" data-bg-image="assets/images/bg/bg-1.jpg" data-overlay="50"> | ||
<div class="container"> | ||
<div class="page-heading-content text-center"> | ||
<h3 class="title">About Us</h3> | ||
<ol class="breadcrumb"> | ||
<li class="breadcrumb-item"><a href="index.php">Home</a></li> | ||
<li class="breadcrumb-item active">About Us</li> | ||
</ol> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<div class="section section-padding"> | ||
<div class="container"> | ||
<div class="row mb-n4"> | ||
|
||
<div class="col-md-6 col-12 pr-lg-5 align-self-center mb-4"> | ||
<div class="about-content"> | ||
<h3 class="title">About Codebells</h3> | ||
<p>前台基础信息模块为高校应届毕业生提供招聘信息的展示查询功能,企业入口是企业报名高校招聘会、管理报名信息功能的实现</p> | ||
<p>后台管理包括招聘会、问卷调查、网站维护模块</p> | ||
<ul> | ||
<li>招聘会模块包括企业登记、需求信息、报名信息、汇总数据、邀请函等子模块。</li> | ||
<li>问卷调查模块设置调查问卷以及管理分析问卷结果。</li> | ||
<li>网站维护则是对网站的基础信息、管理人员信息的维护管理模块,包括基础信息、用户管理、公告发布、资料上传等模块。</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<div class="col-md-6 col-12 mb-4"> | ||
<div class="about-image"> | ||
<img src="assets/images/others/about-1.jpg" alt=""> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="footer-bottom-section section"> | ||
<div class="container"> | ||
<div class="row"> | ||
|
||
|
||
<div class="col-12"> | ||
<p class="footer-copyright text-center">Copyright © 2019.12.16 StudentJobFound Created by Codebells.</p> | ||
</div> | ||
|
||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
|
||
<script src="assets/js/vendor/modernizr-3.6.0.min.js"></script> | ||
<script src="assets/js/vendor/jquery-3.4.1.min.js"></script> | ||
<script src="assets/js/vendor/bootstrap.bundle.min.js"></script> | ||
|
||
|
||
<script src="assets/js/plugins/slick.min.js"></script> | ||
<script src="assets/js/plugins/jquery.waypoints.min.js"></script> | ||
<script src="assets/js/plugins/jquery.counterup.min.js"></script> | ||
<script src="assets/js/plugins/jquery.parallax.js"></script> | ||
<script src="assets/js/plugins/jquery.ajaxchimp.min.js"></script> | ||
<script src="assets/js/plugins/ion.rangeSlider.min.js"></script> | ||
<script src="assets/js/plugins/jquery.scrollUp.min.js"></script> | ||
|
||
|
||
<script src="assets/js/main.js"></script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
$conn=mysqli_connect('localhost','root','','phpserver'); | ||
$job=$_GET['job']; | ||
$comp=$_GET['com']; | ||
$name=$_POST['username']; | ||
$phone=$_POST['phone']; | ||
$type=$_POST['jobtype']; | ||
$sal=$_POST['expectmoney']; | ||
$gender=$_POST['gender']; | ||
$educate=$_POST['education']; | ||
$dir="./company/$comp"; | ||
if(is_dir($dir)) | ||
{ | ||
echo "yes"; | ||
} | ||
else | ||
{ | ||
echo "no"; | ||
$make=mkdir("./company/$comp",0777); | ||
} | ||
$dir=$dir.'/'; | ||
if(is_dir($dir)) | ||
{ | ||
|
||
$file=$_FILES["file"]["name"]; | ||
$tem=$_FILES["file"]["tmp_name"]; | ||
echo"$dir.$file"; | ||
var_dump($_FILES); | ||
move_uploaded_file($tem,$dir.$file); | ||
echo "ok"; | ||
} | ||
|
||
$sql="insert into userapply values('$name','$comp','$phone','$job','$type','$sal','$gender','$educate' )"; | ||
echo $sql; | ||
$stat=mysqli_query($conn,$sql); | ||
echo " | ||
<script>alert('提交成功'); | ||
window.location.href='job_apply.php?job=$job&com=$comp';</script> | ||
"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
/* Slider */ | ||
.slick-slider | ||
{ | ||
position: relative; | ||
|
||
display: block; | ||
box-sizing: border-box; | ||
|
||
-webkit-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
|
||
-webkit-touch-callout: none; | ||
-khtml-user-select: none; | ||
-ms-touch-action: pan-y; | ||
touch-action: pan-y; | ||
-webkit-tap-highlight-color: transparent; | ||
} | ||
|
||
.slick-list | ||
{ | ||
position: relative; | ||
|
||
display: block; | ||
overflow: hidden; | ||
|
||
margin: 0; | ||
padding: 0; | ||
} | ||
.slick-list:focus | ||
{ | ||
outline: none; | ||
} | ||
.slick-list.dragging | ||
{ | ||
cursor: pointer; | ||
cursor: hand; | ||
} | ||
|
||
.slick-slider .slick-track, | ||
.slick-slider .slick-list | ||
{ | ||
-webkit-transform: translate3d(0, 0, 0); | ||
-moz-transform: translate3d(0, 0, 0); | ||
-ms-transform: translate3d(0, 0, 0); | ||
-o-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
|
||
.slick-track | ||
{ | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
|
||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
.slick-track:before, | ||
.slick-track:after | ||
{ | ||
display: table; | ||
|
||
content: ''; | ||
} | ||
.slick-track:after | ||
{ | ||
clear: both; | ||
} | ||
.slick-loading .slick-track | ||
{ | ||
visibility: hidden; | ||
} | ||
|
||
.slick-slide | ||
{ | ||
display: none; | ||
float: left; | ||
|
||
height: 100%; | ||
min-height: 1px; | ||
} | ||
[dir='rtl'] .slick-slide | ||
{ | ||
float: right; | ||
} | ||
.slick-slide img | ||
{ | ||
display: block; | ||
} | ||
.slick-slide.slick-loading img | ||
{ | ||
display: none; | ||
} | ||
.slick-slide.dragging img | ||
{ | ||
pointer-events: none; | ||
} | ||
.slick-initialized .slick-slide | ||
{ | ||
display: block; | ||
} | ||
.slick-loading .slick-slide | ||
{ | ||
visibility: hidden; | ||
} | ||
.slick-vertical .slick-slide | ||
{ | ||
display: block; | ||
|
||
height: auto; | ||
|
||
border: 1px solid transparent; | ||
} | ||
.slick-arrow.slick-hidden { | ||
display: none; | ||
} |
Oops, something went wrong.