forked from toyprj-3/test_1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMore.html
More file actions
53 lines (53 loc) · 2.59 KB
/
More.html
File metadata and controls
53 lines (53 loc) · 2.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>지켜줄개 게시글 상세 페이지</title>
<link href="./toyproject_1/static/css/More.css" type="text/css" rel="stylesheet" />
</head>
<body>
<img src="./media/logo.png" id="logo" />
<div class="content">
<div class="title">🤎 이자벨 임보일기 6 🤎</div>
<div class="middle">
<div class="info">
<span id="name">김멋사 |</span>
<span id="update">2023.06.25 |</span>
<span id="view">100</span>
</div>
<form class="content_btn">
<a href="#" id="fix_a"><input type="button" id="fix" value="수정하기" onclick="move_fix()"></input></a>
<a href="#" id="fix_a"><input type="button" id="del" value="삭제하기" onclick="move_del()"></input></a>
<a href="#" id="fix_a"><input type="button" id="back" value="뒤로가기" onclick="location.href='main.html'"></input></a>
</form>
</div>
<hr id="line"/>
<div id="img"><img src="./media/content_img.jpg" width = "30%" height="60%"></img></div>
<div class="text">
자벨이를 임보한지 벌써 4개월이 넘었네요...! 저번 평일에는
반려동물 운동장에 다녀왔어요! 일산에 있는 건데 생각보다 넓고
좋더라구요. 무엇보다 카페도 넓고 쾌적해서, 운동장에서 놀다 너무
더우면 잠깐 들어와서 쉴 수 있어서 좋았어요. 위 사진은 카페에
포토존이 있길래 ㅎㅎ 자벨이 간식으로 꼬셔서 찍은 사진이에요.
자벨이랑 헤어져야 할 시간이 다가오고 있어서 너무너무 서운하지만,
자벨이가 더 좋은 곳으로 입양갈 수 있음에 감사하며 지내고
있습니다!
</div>
</div>
<script>
function move_fix() {
let res = confirm("게시글을 수정하시겠습니까?");
if (res == true) {
window.location.href = "fix.html";
};
}
function move_del() {
let res = confirm("정말 삭제하시겠습니까?");
if (res == true) {
//삭제
};
}
</script>
</body>
</html>