-
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
50 changed files
with
2,466 additions
and
0 deletions.
There are no files selected for viewing
102 changes: 102 additions & 0 deletions
102
...2-a9ae-0ac1014b9526/9fb6096287d97a479db612c157579be7746c3d432969a5d8c257e65b4e1b4fd4.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,102 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="icon" href="/icon/favicon.ico"> | ||
<meta charset="utf-8"> | ||
<title>게시물 페이지</title> | ||
<link rel="stylesheet" href="/css/Post_Form.css"> | ||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header class="bg-gray-900 text-white py-4"> | ||
<div class="container1 mx-auto flex flex-col md:flex-row justify-between items-center"> | ||
<nav> | ||
<ul class="flex space-x-4"> | ||
<li><a href="/Index" class="hover:text-gray-300">Home</a></li> | ||
<li><a href="/Explore" class="hover:text-gray-300">Explore</a></li> | ||
<li><a href="/Feed_Page" class="hover:text-gray-300">Notifications</a></li> | ||
<li><a href="/Messages" class="hover:text-gray-300">Messages</a></li> | ||
</ul> | ||
</nav> | ||
<div class="flex items-center space-x-4"> | ||
<!-- 로그인 상태 확인 --> | ||
<script> | ||
const isLoggedIn = document.cookie.includes("SessionID"); | ||
</script> | ||
<!-- 계정 정보 메뉴 --> | ||
<script> | ||
if (isLoggedIn) { | ||
document.write('<a href="/Account_Info" class="text-gray-300 hover:text-white">Account</a>'); | ||
document.write('<span class="text-gray-300">|</span>'); | ||
document.write('<a href="/Logout_form" class="text-gray-300 hover:text-white">Logout</a>'); | ||
} else { | ||
document.write('<a href="/Login_form" class="text-gray-300 hover:text-white">Login</a>'); | ||
document.write('<span class="text-gray-300">|</span>'); | ||
document.write('<a href="/Register_form" class="text-gray-300 hover:text-white">Register</a>'); | ||
} | ||
</script> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<h2> </h2> | ||
|
||
<div class="container"> | ||
<div class="profile"> | ||
<img src="/img/profile_picture.png" alt="프로필 사진"> | ||
<span>2QNRpDwD</span> | ||
</div> | ||
|
||
<div class="post-title"> | ||
1245 | ||
</div> | ||
|
||
<div class="divider"></div> | ||
|
||
<div class="post-content"> | ||
125 | ||
</div> | ||
|
||
<div class="post-image"> | ||
<img src="9fb6096287d97a479db612c157579be7746c3d432969a5d8c257e65b4e1b4fd4.png" alt="게시한 사진"> | ||
</div> | ||
|
||
<div class="divider"></div> | ||
|
||
<div class="interactions"> | ||
<button class="home-button" onclick="location.href='/Feed_Page'">go back</button> | ||
<button class="share-button">share</button> | ||
<button class="like-button">like</button> | ||
</div> | ||
</div> | ||
|
||
<div class="container2"> | ||
<hr class="mb-8"> | ||
|
||
<div class="comment-form"> | ||
<h5 class="text-xl font-bold mb-4">Add a Comment</h5> | ||
<form id="comment-form"> | ||
<div class="mb-4"> | ||
<textarea class="w-full px-4 py-2 rounded" id="comment-content" placeholder="Comment content" rows="3"></textarea> | ||
</div> | ||
<!-- <div class="mb-4">"" | ||
<input type="file" class="form-control-file" id="comment-image" accept="image/*"> | ||
</div> --> | ||
<button type="submit" class="w-full bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 rounded">Submit</button> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<div class="container3"> | ||
<div class="comments bg-White-100 p-4 rounded-lg"> | ||
<!-- Additional comments go here --> | ||
</div> | ||
</div> | ||
|
||
|
||
<script type="text/javascript" src="/js/Post_Form.js"></script> | ||
</body> | ||
</html> | ||
</body> | ||
</html> |
102 changes: 102 additions & 0 deletions
102
...2-a9ae-0ac1014b9526/ab051d0ae79c5c53d03557326c23636effb79e6e3b716cda0612cc3c11affa79.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,102 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="icon" href="/icon/favicon.ico"> | ||
<meta charset="utf-8"> | ||
<title>게시물 페이지</title> | ||
<link rel="stylesheet" href="/css/Post_Form.css"> | ||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header class="bg-gray-900 text-white py-4"> | ||
<div class="container1 mx-auto flex flex-col md:flex-row justify-between items-center"> | ||
<nav> | ||
<ul class="flex space-x-4"> | ||
<li><a href="/Index" class="hover:text-gray-300">Home</a></li> | ||
<li><a href="/Explore" class="hover:text-gray-300">Explore</a></li> | ||
<li><a href="/Feed_Page" class="hover:text-gray-300">Notifications</a></li> | ||
<li><a href="/Messages" class="hover:text-gray-300">Messages</a></li> | ||
</ul> | ||
</nav> | ||
<div class="flex items-center space-x-4"> | ||
<!-- 로그인 상태 확인 --> | ||
<script> | ||
const isLoggedIn = document.cookie.includes("SessionID"); | ||
</script> | ||
<!-- 계정 정보 메뉴 --> | ||
<script> | ||
if (isLoggedIn) { | ||
document.write('<a href="/Account_Info" class="text-gray-300 hover:text-white">Account</a>'); | ||
document.write('<span class="text-gray-300">|</span>'); | ||
document.write('<a href="/Logout_form" class="text-gray-300 hover:text-white">Logout</a>'); | ||
} else { | ||
document.write('<a href="/Login_form" class="text-gray-300 hover:text-white">Login</a>'); | ||
document.write('<span class="text-gray-300">|</span>'); | ||
document.write('<a href="/Register_form" class="text-gray-300 hover:text-white">Register</a>'); | ||
} | ||
</script> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<h2> </h2> | ||
|
||
<div class="container"> | ||
<div class="profile"> | ||
<img src="/img/profile_picture.png" alt="프로필 사진"> | ||
<span>2QNRpDwD</span> | ||
</div> | ||
|
||
<div class="post-title"> | ||
12515 | ||
</div> | ||
|
||
<div class="divider"></div> | ||
|
||
<div class="post-content"> | ||
152512125 | ||
</div> | ||
|
||
<div class="post-image"> | ||
<img src="ab051d0ae79c5c53d03557326c23636effb79e6e3b716cda0612cc3c11affa79.png" alt="게시한 사진"> | ||
</div> | ||
|
||
<div class="divider"></div> | ||
|
||
<div class="interactions"> | ||
<button class="home-button" onclick="location.href='/Feed_Page'">go back</button> | ||
<button class="share-button">share</button> | ||
<button class="like-button">like</button> | ||
</div> | ||
</div> | ||
|
||
<div class="container2"> | ||
<hr class="mb-8"> | ||
|
||
<div class="comment-form"> | ||
<h5 class="text-xl font-bold mb-4">Add a Comment</h5> | ||
<form id="comment-form"> | ||
<div class="mb-4"> | ||
<textarea class="w-full px-4 py-2 rounded" id="comment-content" placeholder="Comment content" rows="3"></textarea> | ||
</div> | ||
<!-- <div class="mb-4">"" | ||
<input type="file" class="form-control-file" id="comment-image" accept="image/*"> | ||
</div> --> | ||
<button type="submit" class="w-full bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 rounded">Submit</button> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<div class="container3"> | ||
<div class="comments bg-White-100 p-4 rounded-lg"> | ||
<!-- Additional comments go here --> | ||
</div> | ||
</div> | ||
|
||
|
||
<script type="text/javascript" src="/js/Post_Form.js"></script> | ||
</body> | ||
</html> | ||
</body> | ||
</html> |
102 changes: 102 additions & 0 deletions
102
...2-a9ae-0ac1014b9526/d67d0ef0417837623f06289a333ef1a4049cc4d4040599afbd82c99f6bc23a36.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,102 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="icon" href="/icon/favicon.ico"> | ||
<meta charset="utf-8"> | ||
<title>게시물 페이지</title> | ||
<link rel="stylesheet" href="/css/Post_Form.css"> | ||
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header class="bg-gray-900 text-white py-4"> | ||
<div class="container1 mx-auto flex flex-col md:flex-row justify-between items-center"> | ||
<nav> | ||
<ul class="flex space-x-4"> | ||
<li><a href="/Index" class="hover:text-gray-300">Home</a></li> | ||
<li><a href="/Explore" class="hover:text-gray-300">Explore</a></li> | ||
<li><a href="/Feed_Page" class="hover:text-gray-300">Notifications</a></li> | ||
<li><a href="/Messages" class="hover:text-gray-300">Messages</a></li> | ||
</ul> | ||
</nav> | ||
<div class="flex items-center space-x-4"> | ||
<!-- 로그인 상태 확인 --> | ||
<script> | ||
const isLoggedIn = document.cookie.includes("SessionID"); | ||
</script> | ||
<!-- 계정 정보 메뉴 --> | ||
<script> | ||
if (isLoggedIn) { | ||
document.write('<a href="/Account_Info" class="text-gray-300 hover:text-white">Account</a>'); | ||
document.write('<span class="text-gray-300">|</span>'); | ||
document.write('<a href="/Logout_form" class="text-gray-300 hover:text-white">Logout</a>'); | ||
} else { | ||
document.write('<a href="/Login_form" class="text-gray-300 hover:text-white">Login</a>'); | ||
document.write('<span class="text-gray-300">|</span>'); | ||
document.write('<a href="/Register_form" class="text-gray-300 hover:text-white">Register</a>'); | ||
} | ||
</script> | ||
</div> | ||
</div> | ||
</header> | ||
|
||
<h2> </h2> | ||
|
||
<div class="container"> | ||
<div class="profile"> | ||
<img src="/img/profile_picture.png" alt="프로필 사진"> | ||
<span>2QNRpDwD</span> | ||
</div> | ||
|
||
<div class="post-title"> | ||
125151 | ||
</div> | ||
|
||
<div class="divider"></div> | ||
|
||
<div class="post-content"> | ||
15512512 | ||
</div> | ||
|
||
<div class="post-image"> | ||
<img src="d67d0ef0417837623f06289a333ef1a4049cc4d4040599afbd82c99f6bc23a36.png" alt="게시한 사진"> | ||
</div> | ||
|
||
<div class="divider"></div> | ||
|
||
<div class="interactions"> | ||
<button class="home-button" onclick="location.href='/Feed_Page'">go back</button> | ||
<button class="share-button">share</button> | ||
<button class="like-button">like</button> | ||
</div> | ||
</div> | ||
|
||
<div class="container2"> | ||
<hr class="mb-8"> | ||
|
||
<div class="comment-form"> | ||
<h5 class="text-xl font-bold mb-4">Add a Comment</h5> | ||
<form id="comment-form"> | ||
<div class="mb-4"> | ||
<textarea class="w-full px-4 py-2 rounded" id="comment-content" placeholder="Comment content" rows="3"></textarea> | ||
</div> | ||
<!-- <div class="mb-4">"" | ||
<input type="file" class="form-control-file" id="comment-image" accept="image/*"> | ||
</div> --> | ||
<button type="submit" class="w-full bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 rounded">Submit</button> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
<div class="container3"> | ||
<div class="comments bg-White-100 p-4 rounded-lg"> | ||
<!-- Additional comments go here --> | ||
</div> | ||
</div> | ||
|
||
|
||
<script type="text/javascript" src="/js/Post_Form.js"></script> | ||
</body> | ||
</html> | ||
</body> | ||
</html> |
Oops, something went wrong.