-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_not_joined.php
More file actions
46 lines (39 loc) · 850 Bytes
/
Copy pathmain_not_joined.php
File metadata and controls
46 lines (39 loc) · 850 Bytes
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
<?php
if(!isset($_SESSION)){session_start();} //세션이 있으면 넘어가고 없으면 세션을 시작함
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" \>
<style>
@import url(http://fonts.googleapis.com/earlyaccess/jejugothic.css);
a {
text-decoration: none;
color: black;
}
#logo_center {
display: table-cell;
vertical-align: middle;
text-align: center;
}
pre {
margin: 0;
font-size: 50px;
text-align: center;
}
</style>
</head>
<body>
<?php
include "db.php";
include "top_menu.php";
?>
<a href=project_board.php>
<img src=logo.png id="logo_center" style="width: 600px; height: auto; margin: auto; padding: auto">
</a>
<pre style="color: #8C8C8C";> 참여중인 프로젝트가 없습니다. </pre>
</body>
<?php
include "footer.php";
?>
</html>