-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend_page.html
More file actions
66 lines (63 loc) · 2.14 KB
/
send_page.html
File metadata and controls
66 lines (63 loc) · 2.14 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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>send page</title>
<link rel="stylesheet" href="../static/css/send_page.css">
</head>
<body>
<div class="le">
<div class="logo">
<img class="logoimg" src="../static/css/icon/logo2.png">
</div>
<a href="/" class="tagline">Why? py!</a>
</div>
</div>
<div class="main">
<div class="post">보낸 쪽지</div>
<div class="up">
<div class="total">전체 4통</div>
<div class="button">
<button class="setting">쪽지쓰기</button>
<button class="setting">삭제</button>
</div>
</div>
<div class="box">
<table>
<thead>
<th></th>
<th>받는사람</th>
<th>쪽지내용</th>
<th>상태</th>
</thead>
<tbody align="center">
<tr>
<td><input name="select" type="checkbox"></td>
<td>받는사람</td>
<td>쪽지내용</td>
<td>읽음</td>
</tr>
<tr>
<td><input name="select" type="checkbox"></td>
<td>받는사람</td>
<td>쪽지내용</td>
<td>읽음</td>
<tr>
<td><input name="select" type="checkbox"></td>
<td>받는사람</td>
<td>쪽지내용</td>
<td>읽지 않음</td>
</tr>
<tr>
<td><input name="select" type="checkbox"></td>
<td>받는사람</td>
<td>쪽지내용</td>
<td>읽지 않음</td>
</tr>
</table>
</div>
</div>
</body>
</html>