-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.php
39 lines (32 loc) · 1013 Bytes
/
welcome.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
<?php
session_start();
if(!isset($_SESSION["user"])){
header("location:index.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="renderer" content="webkit">
<title>个人中心</title>
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./font-awesome/css/font-awesome.css" rel="stylesheet">
<!-- Morris -->
<link href="./css/plugins/morris/morris-0.4.3.min.css" rel="stylesheet">
<!-- Gritter -->
<link href="./js/plugins/gritter/jquery.gritter.css" rel="stylesheet">
<link href="./css/animate.css" rel="stylesheet">
<link href="./css/style.css" rel="stylesheet">
<style type="text/css">
body {background:url(./img/background.jpg) ;
height: 662px;
width: 970px;
background-repeat: no-repeat;
}
</style>
</head>
<body >
</body>
</html>