-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite_4.html
More file actions
71 lines (64 loc) · 3.08 KB
/
Copy pathwrite_4.html
File metadata and controls
71 lines (64 loc) · 3.08 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
67
68
69
70
71
<?
include("include/head.php");
?>
<!--step s-->
<div id="normal">
<div class="stepper_wrapper">
<div class="stepper_item completed">
<div class="step_counter"><span class="material-symbols-outlined">done</span></div>
<div class="step_name">연명 의료</div>
</div>
<div class="stepper_item completed">
<div class="step_counter"><span class="material-symbols-outlined">done</span></div>
<div class="step_name">기증 신청</div>
</div>
<div class="stepper_item active">
<div class="step_counter">4</div>
<div class="step_name">수의</div>
</div>
<div class="stepper_item">
<div class="step_counter">5</div>
<div class="step_name">염습</div>
</div>
<div class="stepper_item">
<div class="step_counter">6</div>
<div class="step_name">화장/매장</div>
</div>
</div>
</div>
<!--step e-->
<!--content s-->
<div class="container pb-0">
<div class="d-flex flex-column px-4 pt-3 vh-100 ">
<div>
<h2 class="pb-5">수의는 어떻게 준비할까요?</h2>
</div>
<div class="d-flex gap-3 flex-column">
<input type="radio" class="btn-check" name="options" id="option10" autocomplete="off">
<label class="btn btn-primary-toggle btn-lg w-100" for="option10">내가 평소 즐겨입던 옷으로 입을게요</label>
<input type="radio" class="btn-check" name="options" id="option11" autocomplete="off" >
<label class="btn btn-primary-toggle btn-lg w-100" for="option11">수의를 준비해 주세요</label>
<input type="radio" class="btn-check" name="options" id="option111" autocomplete="off" >
<label class="btn btn-primary-toggle btn-lg w-100" for="option111">수의는 입지 않겠습니다</label>
</div>
<div class="bottom_info">
<img src="img/image_368.png">
<div class="subtitle4 cl_description pb-2">수의가 무엇인가요?</div>
<div class="caption1 cl_info">
수의는 입관식 때 고인에게 입혀드리는 옷입니다.<br>예로부터 수의는 고인이 가장 좋아하는 옷을 입혀드렸습니다.
</div>
</div>
<div class="fixed_bottom px-4 py-3 d-flex gap-4 bg-white">
<button type="button" class="btn btn-lg flex-1 btn-gray"
onclick="location.href='write_3.html'">
이전</button>
<button type="button" class="btn btn-lg flex-1 btn-primary"
onclick="location.href='write_5.html'">
다음</button>
</div>
</div>
</div>
<!--content e-->
<?
include("include/footer.php");
?>