-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite_5.html
More file actions
45 lines (40 loc) · 2.19 KB
/
Copy pathwrite_5.html
File metadata and controls
45 lines (40 loc) · 2.19 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
<?
include("include/head.php");
?>
<!--content s-->
<div class="container pb-0">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-label="Basic example" style="width:70%"
aria-valuenow="83" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<div class="d-flex flex-column px-3 pt-7 vh-100 ">
<div>
<h2 class="pb-8">화장과 매장 중 어떤것을 원하세요?</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>
</div>
<div class="bottom_info">
<div class="subtitle4 cl_description pb-2">어떤 차이가 있을까?</div>
<div class="caption1 cl_info">
* 거주지 화장의 경우, 거주민(6개월 이상 거주)의 경우에는 평균 5~10만원의 화장 비용이 발생합니다.<br>
* 매장의 경우 이미 선산이 있는 경우 등의 상황에 따라 가격이 달라집니다. (매장 비용은 대부분 묘지 공사비용이며 평균 700만원 이상 책정됩니다.)
</div>
</div>
<div class="fixed_bottom px-3 py-3 d-flex gap-3">
<button type="button" class="btn btn-lg w-50 btn-gray"
onclick="location.href='write_4.html'">
이전</button>
<button type="button" class="btn btn-lg w-50 btn-primary"
onclick="location.href='write_6.html'">
다음</button>
</div>
</div>
</div>
<!--content e-->
<?
include("include/footer.php");
?>