-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
61 lines (61 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<table
id="reports-tbl"
class="table dataTable no-footer"
role="grid"
aria-describedby="reports-tbl_info"
>
<thead>
<tr role="row">
<th style="width: auto">플랜</th>
<th style="width: auto">서버 라이센스</th>
<th style="width: auto">구매자</th>
<th style="width: auto">구입 날짜</th>
<th style="width: auto">연장 예정 날짜</th>
<th style="width: auto">서버 IP</th>
<th style="width: auto">상태</th>
<th style="width: auto"></th>
</tr>
</thead>
<tbody>
<tr role="row" class="odd">
<td>
<span>A-01</span>
</td>
<td>
<span>502556a3-fb83-44e2-bc0b-d135c3329078</span>
</td>
<td>
<span>이메일</span>
</td>
<td>
<input type="date" />
</td>
<td>
<input type="date" />
</td>
<td>
<input type="text" />
</td>
<td>
<select>
<option value="0">활성화</option>
<option value="1">생성 대기중</option>
</select>
</td>
<td>
<a href="javascript:void(0)" class="btn btn-primary btn-sm">확인</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>