-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.php
103 lines (102 loc) · 3.33 KB
/
people.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
<?php
include 'inc_head.php';
?>
<!DOCTYPE HTML>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<title>SPENGO</title>
<link rel="stylesheet" type="text/css" href="css/css.css?3.0.0">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body>
<div class="top">
<?php
if ( $jb_login ) {
?>
<a href="mypage.php">
<?php
echo $_SESSION[ 'username' ]
?>
</a>
<a href="logout.php">로그아웃</a>
<?php
}else{
?>
<a class="top_text" href="join.php">회원가입</a>
<a class="top_text" href="login.php">로그인</a>
<?php
}
?>
</div>
<div class="head">
<a href="index.php"><h1>Spengo</h1><h4>Learn english like sponge</h4></a>
</div>
<div class="menu">
</div>
<br>
<div class="contents">
<h2>People</h2>
<ul>
<li>
<div class='people'>
<div class='people_img'>
<img class="profile" src="images/kim3.png">
</div>
<div class='people_txt'>
<h3>Name : Seo-Yeong Kim</h3><br>
<h3>Age : 19</h3><br>
<h3>Motto : I am Ninja.</h3><br>
</div>
</div>
</li>
<br>
<li>
<div class='people'>
<div class='people_img'>
<img class="profile" src="images/park.png">
</div>
<div class='people_txt'>
<h3>Name : Yeon-Seo Park</h3><br>
<h3>Age : 19</h3><br>
<h3>Motto : I will be King of Pirate.</h3><br>
</div>
</div>
</li>
<br>
<li>
<div class='people'>
<div class='people_img'>
<img class="profile" src="images/yang2.png">
</div>
<div class='people_txt'>
<h3>Name : Tae-Seok Yang</h3><br>
<h3>Age : 20</h3><br>
<h3>Motto : I like monday.</h3><br>
</div>
</div>
</li>
<br>
<li>
<div class='people'>
<div class='people_img'>
<img class="profile" src="images/choi.png">
</div>
<div class='people_txt'>
<h3>Name : Ji-Woo Choi</h3><br>
<h3>Age : 20</h3><br>
<h3>Motto : Life is health and happy.</h3><br>
</div>
</div>
</li>
</ul>
</div>
<div class="foot">
<a href="people.php">Maker : Yang with Kim and Park in Gachon uni</a> / Email : [email protected] / <a href="https://github.com/taeseokyang">Github</a>
</div>
</body>
</html>