최초 세팅
This commit is contained in:
87
src/main/resources/templates/web/voc/vocSelect.html
Normal file
87
src/main/resources/templates/web/voc/vocSelect.html
Normal file
@@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:th="http://www.thymeleaf.org"
|
||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||||
layout:decorate="~{/web/layout/layout}">
|
||||
<th:block layout:fragment="layoutCss">
|
||||
<link rel="stylesheet" href="/css/web/voc/webVOC.css?ver=2">
|
||||
</th:block>
|
||||
<th:block layout:fragment="layoutContent">
|
||||
<main>
|
||||
<div class="inner_wrap">
|
||||
<h3>
|
||||
<span>칭찬/불만 접수</span>
|
||||
</h3>
|
||||
|
||||
<hr class="hrtag"/>
|
||||
<form name="dataform" id="dataform">
|
||||
<table class="table table-bordered board_write">
|
||||
<caption>글쓰기</caption>
|
||||
<colgroup>
|
||||
<col width="20%">
|
||||
<col width="30%">
|
||||
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>지점선택</th>
|
||||
<td >
|
||||
<select name="gubun" class="form-select input_select">
|
||||
<option value="GN">강남본점</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>고객명</th>
|
||||
<td >
|
||||
<input type="text" name="name" value="" placeholder='고객님의 성함을 입력해 주세요.' class="input_text">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th class="board_txt1">휴대폰번호</th>
|
||||
<td class="lm teltd" >
|
||||
<div>
|
||||
<input type="text" id="phoneNumber" name="phoneNumber" placeholder='고객님의 핸드폰 번호를 입력해 주세요.' class="input_tel">
|
||||
<input type="button" class="input_button" name="sendAuthNumBtn" id="sendAuthNumBtn" Onclick="javascript:fn_sendAuthNum();" value="인증번호 발송">
|
||||
</div>
|
||||
<div class="bd-top">
|
||||
<input type="text" class="input_auth" id="authNumber" name="authNumber" placeholder='인증번호를 입력해 주세요.'>
|
||||
<p id="timer" class="input_time">03:00</p>
|
||||
<input type="button" class="input_button noactive" name="sendAuthNumBtn" id="sendAuthNumBtn" Onclick="javascript:fn_selectPhoneAuthCheck();" value="인증번호 확인">
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="board_txt1">의견 분류</th>
|
||||
<td class="lm" >
|
||||
<input type='radio' class="input_radio" name='opinion' value='PR' id="a"/> <label class="label_radio" for='a'>칭찬</label>
|
||||
<input type='radio' class="input_radio" name='opinion' value='DS' id="b"/> <label class="label_radio" for='b'>불만</label>
|
||||
<input type='radio' class="input_radio" name='opinion' value='ET' id="c"/> <label class="label_radio" for='c'>기타의견</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="board_txt1">내용입력</th>
|
||||
<td class="lm" >
|
||||
<textarea name="content" rows="15" class="input_text_area" id="Contents" placeholder='고객님의 소중한 의견을 입력해 주세요.'></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>
|
||||
<input type='checkbox' name="check" id="check" class="input_check"/> [필수] 서비스 이용 및 예약 신청을 위한 개인정보 제공에 동의
|
||||
</p>
|
||||
<p>
|
||||
<a href="/webaccept/acceptPrivacy.do">[자세히 보기]</a>
|
||||
</p>
|
||||
<p>
|
||||
<input type="button" class="input_button" Onclick="javascript:fn_submit();" value="의견 접수하기">
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
</main>
|
||||
</th:block>
|
||||
<th:block layout:fragment="layoutContentScript">
|
||||
<script src="/js/web/voc/webVOC.js?ver=2"></script>
|
||||
</th:block>
|
||||
</html>
|
||||
Reference in New Issue
Block a user