-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
66 lines (52 loc) · 1.75 KB
/
test.html
File metadata and controls
66 lines (52 loc) · 1.75 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
<div class="modal-card">
<div class="modal-item-box">
<div class="modal-item">
<h3 style="font-weight:bold">상품번호</h3>
<input type="text" value="123456655"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">상품명</h3>
<input type="text" value="토끼 화분"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">닉네임</h3>
<input type="text" value="가좌동코코넛도둑"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">배송상태</h3>
<input type="text" value="배송완료"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">할인적용</h3>
<input type="text" value="적용"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">결제방식</h3>
<input type="text" value="뭔가"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">수량</h3>
<input type="text" value="2"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">상품 상세</h3>
<input type="text" value="api로 받을 데이터"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">이메일</h3>
<input type="text" value="cosmoyj7733@gmail.com"></input>
</div>
<div>
<h3 style="font-weight:bold">전화번호</h3>
<input type="text" value="010-9376-9605"></input>
</div>
<div class="modal-item">
<h3 style="font-weight:bold">주문 메세지</h3>
<input class="input-order-massage" type="text" value="어쩌구저쩌구"></input>
</div>
</div>
<div class="modal-button-box">
<button class="modal-button-post">저장</button>
<button class="modal-button-exit">나가기</button>
</div>
</div>