-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite_7.html
More file actions
78 lines (70 loc) · 3.48 KB
/
Copy pathwrite_7.html
File metadata and controls
78 lines (70 loc) · 3.48 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
72
73
74
75
76
77
78
<?
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 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">7</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-4 vh-100 ">
<div>
<h2 class="pb-6">마지막으로 <br>남기고 싶은 말이 있으신가요?</h2>
</div>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="어떤 이야기든 좋아요. 부담없이 사랑하는 사람들에게 작성해보세요."></textarea>
<div class="pt-6">
<h2 class="pb-8">그 외에 필요한 서비스가 있으신가요?</h2>
</div>
<div class="d-flex gap-3 flex-column">
<input type="radio" class="btn-check" name="options" id="option19" autocomplete="off">
<label class="btn btn-primary-toggle btn-lg w-100" for="option19">아니요, 이 정도면 충분합니다.</label>
<input type="radio" class="btn-check" name="options" id="option16" >
<label class="btn btn-primary-toggle btn-lg w-100" for="option16">네, 전화로 상담하고 싶어요.</label>
<input type="number" class="form-control" id="call_check" style="display:none" placeholder="상담받으실 전화번호를 입력해주시면 곧 전화드리겠습니다." aria-label="전화번호" aria-describedby="basic-addon1">
</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_6.html'">
이전</button>
<button type="button" class="btn btn-lg flex-1 btn-primary" onclick="location.href='loading.html'">
작성 완료</button>
</div>
</div>
</div>
<script>
$("#option16").on("click", function () {
if ($(this).is(':checked') == true) {
$("#call_check").show();
}
});
$("#option19").on("click", function () {
if ($(this).is(':checked') == true) {
$("#call_check").hide();
}
});
</script>
<!--content e-->
<?
include("include/footer.php");
?>