new.jsp 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  2. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
  3. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  4. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  5. <jsp:include page="${data._INCLUDE}/header.jsp"></jsp:include>
  6. <script type="text/javascript">
  7. function patientNewInit() {
  8. if( $( "#basalN" ).is( ":checked" ) ) {
  9. $( "td.basalDisease input" ).prop( "disabled", true );
  10. }
  11. $( "label.label-readonly-check" ).each( function( i, v ){
  12. var $this = $(v);
  13. var checkbox = $this.find( "input[type='checkbox']" );
  14. var textbox = $this.find( "input[type='text']" );
  15. if( !checkbox.is(":checked") ){
  16. textbox.prop( "readonly", true );
  17. }
  18. });
  19. };
  20. function setEventHandler(){
  21. //체크yes시 content입력 처리
  22. $( "label.label-readonly-check input[type='checkbox']" ).on( "click", function(){
  23. var $this = $( this );
  24. $this.closest( "label" ).find( "input[type='text']" ).prop( "readonly", $this.is( ":checked" ) === false );
  25. if( $this.is( ":checked" ) === false ) {
  26. $this.closest( "label" ).find( "input[type='text']" ).val( "" );
  27. } else {
  28. $this.closest( "label" ).find( "input[type='text']" ).focus();
  29. };
  30. });
  31. //기저질환유무 처리
  32. $( "input[name='basalDiseaseYn']" ).on( "click", function(){
  33. var $this = $( this );
  34. if( $this.val() == "Y" ){
  35. patientNewInit();
  36. $( ".basalDisease input" ).prop( "disabled", false );
  37. } else {
  38. $( "td.basalDisease input" ).prop( "disabled", true );
  39. $( "td.basalDisease input[type='checkbox']" ).prop( "checked", false );
  40. $( "td.basalDisease input[type='text']" ).val( "" );
  41. }
  42. });
  43. //입소일시
  44. $( ".hospitalizationDate" ).on( "change", function(){
  45. var ymd = $( "#hospitalizationDateYmd" ).val();
  46. var hour = $( "#hospitalizationDateHour" ).val();
  47. var min = $( "#hospitalizationDateMin" ).val();
  48. hour = Number(hour) < 10 ? "0" + hour : hour;
  49. min = Number(min) < 10 ? "0" + min : min;
  50. $( "#hospitalizationDate" ).val( ymd + " " + hour + ":" + min + ":00" );
  51. });
  52. //생년월일
  53. $( ".select-date" ).on( "change", function(){
  54. var $this = $( this );
  55. var wrap = $this.closest( "div.date" );
  56. var dateYear = wrap.find( ".date-year" ).val();
  57. var dateMonth = wrap.find( ".date-month" ).val();
  58. var dateDay = wrap.find( ".date-day" ).val();
  59. dateMonth = Number(dateMonth) < 10 ? "0" + dateMonth : dateMonth;
  60. dateDay = Number(dateDay) < 10 ? "0" + dateDay : dateDay;
  61. wrap.find( "input.error-box" ).val( dateYear + "-" + dateMonth + "-" + dateDay );
  62. });
  63. }
  64. $( function(){
  65. patientNewInit();
  66. setEventHandler();
  67. $( "input.date" ).daterangepicker({
  68. singleDatePicker : true,
  69. showDropdowns : true,
  70. locale : {
  71. //format : "M/DD hh:mm A"
  72. format : "YYYY-MM-DD"
  73. }
  74. });
  75. $( "#patientForm" ).validate({
  76. rules: {
  77. hospitalizationDate : {
  78. dateTime : true
  79. },
  80. patientPhone : {
  81. phoneValid : true
  82. },
  83. guardianPhone : {
  84. phoneValid : true
  85. },
  86. jumin : {
  87. date : true
  88. }
  89. },
  90. messages : {
  91. // jumin : "생년월일을 모두 선택해주세요",
  92. gender: "성별을 선택해주세요",
  93. wardNumber : "동을 입력해주세요",
  94. roomNumber : "호실을 입력해주세요",
  95. hospitalizationDate : {
  96. dateTime:"입소일시를 선택해주세요"
  97. }
  98. },
  99. onkeyup: function( element, event ) {
  100. $( element ).valid();
  101. },
  102. onfocusout: function (element) {
  103. $( element ).val( $.trim( $( element ).val() ) );
  104. $( element ).valid();
  105. },
  106. errorPlacement: function(error, element) {
  107. if (element.attr("type") == "radio") {
  108. error.insertBefore(element);
  109. } else {
  110. error.insertAfter(element);
  111. }
  112. },
  113. submitHandler: function(form) {
  114. form.submit();
  115. }
  116. });
  117. });
  118. </script>
  119. </head>
  120. <body>
  121. <div class="wrapper">
  122. <jsp:include page="${data._INCLUDE}/sidebar.jsp"></jsp:include>
  123. <div class="main">
  124. <jsp:include page="${data._INCLUDE}/top.jsp"></jsp:include>
  125. <main class="content">
  126. <div class="container-fluid p-0">
  127. <!-- 환자관리 : 신규환자 등록 START -->
  128. <div class="row">
  129. <div class="col-12 col-lg-6">
  130. <h1 class="h3 mb-3">환자정보등록</h1>
  131. </div>
  132. <div class="col-12 col-lg-6 text-right">
  133. <nav aria-label="breadcrumb">
  134. <ol class="breadcrumb">
  135. <li class="breadcrumb-item"><a href="javscript:;">Home</a></li>
  136. <li class="breadcrumb-item">환자관리</li>
  137. <li class="breadcrumb-item active">환자정보 등록</li>
  138. </ol>
  139. </nav>
  140. </div>
  141. </div>
  142. <div class="row">
  143. <div class="col-12">
  144. <div class="card">
  145. <div class="card-body">
  146. <c:if test="${centerCount eq 0}">
  147. <table class="table mobile-table">
  148. <tr>
  149. <th>치료센터</th>
  150. <td class="text-danger">등록된 생활치료센터가 없습니다. <br/>생활치료센터 신규 등록을 해주세요. </td>
  151. </tr>
  152. </table>
  153. </c:if>
  154. <c:if test="${centerCount > 0}">
  155. <c:set var="now" value="<%=new java.util.Date()%>" />
  156. <c:set var="action" value="/patient/new/insert" />
  157. <form id="patientForm" action="${action}" method="post">
  158. <table class="table mobile-table">
  159. <colgroup>
  160. <col style="width:15%">
  161. <col style="width:35%">
  162. <col style="width:15%">
  163. <col style="width:35%">
  164. </colgroup>
  165. <tr>
  166. <th>치료센터</th>
  167. <td><c:out value="${centerName}"/></td>
  168. <th><span class="fix">*</span>입소일시</th>
  169. <td colspan="2">
  170. <div class="form-row">
  171. <!-- 입소일시 -->
  172. <c:set var="sysYmd"><fmt:formatDate value="${now}" pattern="yyyy-MM-dd" /></c:set>
  173. <c:set var="sysHour"><fmt:formatDate value="${now}" pattern="h" /></c:set>
  174. <c:set var="sysMin"><fmt:formatDate value="${now}" pattern="m" /></c:set>
  175. <div class="col-6 calendar-bar">
  176. <input class="form-control date hospitalizationDate" type="text" id="hospitalizationDateYmd">
  177. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  178. </div>
  179. <div class="col-3">
  180. <select class="custom-select hospitalizationDate" id="hospitalizationDateHour">
  181. <option value="" selected="">시</option>
  182. <c:forEach var="h" begin="1" end="24" step="1">
  183. <option value="${h}" <c:if test="${sysHour eq h}">selected="selected"</c:if>>${h} 시</option>
  184. </c:forEach>
  185. </select>
  186. </div>
  187. <div class="col-3">
  188. <select class="custom-select hospitalizationDate" id="hospitalizationDateMin">
  189. <option value="" selected="">분</option>
  190. <c:forEach var="i" begin="0" end="59" step="1">
  191. <option value="${i}" <c:if test="${sysMin eq i}">selected="selected"</c:if>>${i} 분</option>
  192. </c:forEach>
  193. </select>
  194. </div>
  195. <input type="text" id="hospitalizationDate" name="hospitalizationDate" class="error-box" required>
  196. </div>
  197. </td>
  198. </tr>
  199. <tr>
  200. <th><span class="fix">*</span>병동 번호</th>
  201. <td>
  202. <div class="form-check-inline">
  203. <!-- 병동 번호 (동 /호실) -->
  204. <input type="text" class="form-control" name="wardNumber" required> <span>동</span>
  205. <input type="text" class="form-control" name="roomNumber" required> <span>호</span>
  206. </div>
  207. </td>
  208. <th><span class="fix">*</span>이름</th>
  209. <td>
  210. <!-- 환자 이름 -->
  211. <input type="text" name="patientName" class="form-control" placeholder="이름을 입력해주세요" required>
  212. </td>
  213. </tr>
  214. <tr>
  215. <th><span class="fix">*</span>성별</th>
  216. <td>
  217. <!-- 성별 -->
  218. <label class="form-check form-check-inline">
  219. <input class="form-check-input" type="radio" name="gender" value="M" required>
  220. <span class="form-check-label">남</span>
  221. </label>
  222. <label class="form-check form-check-inline">
  223. <input class="form-check-input" type="radio" name="gender" value="F" required>
  224. <span class="form-check-label">여</span>
  225. </label>
  226. </td>
  227. <th><span class="fix">*</span>생년월일</th>
  228. <td>
  229. <!-- 생년월일 -->
  230. <div class="form-row date">
  231. <div class="col-4">
  232. <c:set var="sysYear"><fmt:formatDate value="${now}" pattern="yyyy" /></c:set>
  233. <select class="custom-select select-date date-year">
  234. <option value="" selected="">년</option>
  235. <c:forEach var="y" begin="1900" end="${sysYear}" step="1">
  236. <option value="${y}">${y} 년</option>
  237. </c:forEach>
  238. </select>
  239. </div>
  240. <div class="col-4">
  241. <select class="custom-select select-date date-month">
  242. <option value="" selected="">월</option>
  243. <c:forEach var="m" begin="1" end="12" step="1">
  244. <option value="${m}">${m} 월</option>
  245. </c:forEach>
  246. </select>
  247. </div>
  248. <div class="col-4">
  249. <select class="custom-select select-date date-day">
  250. <option value="" selected="">일</option>
  251. <c:forEach var="d" begin="1" end="31" step="1">
  252. <option value="${d}">${d} 일</option>
  253. </c:forEach>
  254. </select>
  255. </div>
  256. <input type="text" class="error-box" id="jumin" name="jumin" required>
  257. </div>
  258. </td>
  259. </tr>
  260. <tr>
  261. <th><span class="fix">*</span>연락처</th>
  262. <td>
  263. <input type="text" name="patientPhone" class="form-control" placeholder="연락처를 입력해주세요" required>
  264. </td>
  265. <th>보호자 연락처</th>
  266. <td>
  267. <input type="text" name="guardianPhone" class="form-control" placeholder="보호자 연락처를 입력해주세요">
  268. </td>
  269. </tr>
  270. <tr>
  271. <th><span class="fix">*</span>증상시작일</th>
  272. <td>
  273. <div class="form-group calendar-bar mb-xl-0">
  274. <input class="form-control date" type="text" name="symptomStartDate">
  275. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  276. </div>
  277. </td>
  278. <th><span class="fix">*</span>확진일</th>
  279. <td>
  280. <div class="form-group calendar-bar mb-xl-0">
  281. <input class="form-control date" type="text" name="confirmationDate">
  282. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  283. </div>
  284. </td>
  285. </tr>
  286. <tr>
  287. <th>격리해제 예정일</th>
  288. <td colspan="3">
  289. <div class="form-group calendar-bar mb-xl-0">
  290. <input class="form-control date" type="text" name="disisolationDate">
  291. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  292. </div>
  293. </td>
  294. </tr>
  295. <tr>
  296. <th>최근약복용<br />(최근 24시간 이내)</th>
  297. <td>
  298. <label class="form-check form-check-inline">
  299. <input class="form-check-input" type="radio" value="N" name="drugYn" onclick="$('#drugContent').attr('readonly', true).val('');">
  300. <span class="form-check-label">미복용</span>
  301. </label>
  302. <label class="form-check form-check-inline">
  303. <input class="form-check-input" type="radio" value="Y" name="drugYn" onclick="$('#drugContent').removeAttr('readonly');">
  304. <span class="form-check-label">복용</span>
  305. </label>
  306. <label class="form-check form-check-inline">
  307. <input type="text" id="drugContent" class="form-control" name="drugContent" placeholder="약명을 입력하세요." readonly>
  308. </label>
  309. </td>
  310. <th><span class="fix">*</span>임신</th>
  311. <td>
  312. <label class="form-check form-check-inline">
  313. <input class="form-check-input" type="radio" name="pregnancyStatus" value="N" required>
  314. <span class="form-check-label">무</span>
  315. </label>
  316. <label class="form-check form-check-inline">
  317. <input class="form-check-input" type="radio" name="pregnancyStatus" value="Y" required>
  318. <span class="form-check-label">유</span>
  319. </label>
  320. <label class="form-check form-check-inline">
  321. <select class="custom-select" name="pregnancyWeek" id="pregnancyWeek">
  322. <option value="" selected="">임신 주차</option>
  323. <c:forEach var="p" begin="1" end="40" step="1">
  324. <option value="${p}">${p} 주</option>
  325. </c:forEach>
  326. </select>
  327. </label>
  328. </td>
  329. </tr>
  330. <tr>
  331. <th rowspan="4">기저질환 여부</th>
  332. <td colspan="3">
  333. <label class="form-check form-check-inline">
  334. <input class="form-check-input" type="radio" id="basalY" name="basalDiseaseYn" value="Y" required>
  335. <span class="form-check-label">예</span>
  336. </label>
  337. <label class="form-check form-check-inline">
  338. <input class="form-check-input" type="radio" id="basalN" name="basalDiseaseYn" value="N" checked="checked" required>
  339. <span class="form-check-label">아니오</span>
  340. </label>
  341. (예인 경우 하단의 기저질환을 선택하세요)
  342. </td>
  343. </tr>
  344. <tr>
  345. <td colspan="3" class="basalDisease">
  346. <label class="form-check form-check-inline">
  347. <input class="form-check-input" name="highBloodPressureCheck" type="checkbox" value="Y">
  348. <span class="form-check-label">고혈압</span>
  349. </label>
  350. <label class="form-check form-check-inline">
  351. <input class="form-check-input" name="lowBloodPressureCheck" type="checkbox" value="Y">
  352. <span class="form-check-label">저혈압</span>
  353. </label>
  354. <label class="form-check form-check-inline">
  355. <input class="form-check-input" name="organTransplantCheck" type="checkbox" value="Y">
  356. <span class="form-check-label">장기이식(신장, 간 등)</span>
  357. </label>
  358. <label class="form-check form-check-inline">
  359. <input class="form-check-input" name="diabetesCheck" type="checkbox" value="Y">
  360. <span class="form-check-label">당뇨병</span>
  361. </label>
  362. <label class="form-check form-check-inline">
  363. <input class="form-check-input" name="respiratoryDiseaseCheck" type="checkbox" value="Y">
  364. <span class="form-check-label">호흡기 질환</span>
  365. </label>
  366. <label class="form-check form-check-inline">
  367. <input class="form-check-input" name="immunologicalDiseaseCheck" type="checkbox" value="Y">
  368. <span class="form-check-label">면역질환(류마티스 등)</span>
  369. </label>
  370. </td>
  371. </tr>
  372. <tr>
  373. <td colspan="3" class="basalDisease">
  374. <label class="form-check form-check-inline">
  375. <input class="form-check-input" name="heartDisease" type="checkbox" value="Y">
  376. <span class="form-check-label">심장질환</span>
  377. </label>
  378. <label class="form-check form-check-inline">
  379. <input class="form-check-input" name="liverDisease" type="checkbox" value="Y">
  380. <span class="form-check-label">간질환</span>
  381. </label>
  382. <label class="form-check form-check-inline label-readonly-check">
  383. <input class="form-check-input" name="operation" type="checkbox" value="Y">
  384. <!-- ( <input type="text" id="operationContent" name="operationContent" class="form-control form-control-sm w150" name=""> ) -->
  385. <span class="form-check-label">수술</span>
  386. </label>
  387. <label class="form-check form-check-inline">
  388. <input class="form-check-input" name="allergyCheck" type="checkbox" value="Y">
  389. <span class="form-check-label">알레르기</span>
  390. </label>
  391. <label class="form-check form-check-inline">
  392. <input class="form-check-input" name="kidneyDisease" type="checkbox" value="Y">
  393. <span class="form-check-label">신장질환</span>
  394. </label>
  395. </td>
  396. </tr>
  397. <tr>
  398. <td colspan="3" class="basalDisease">
  399. <label class="form-check form-check-inline label-readonly-check">
  400. <input class="form-check-input" name="cancerCheck" type="checkbox" value="Y">
  401. <span class="form-check-label">암 ( <input type="text" name="cancerName" class="form-control form-control-sm w150"> )</span>
  402. </label>
  403. <label class="form-check form-check-inline label-readonly-check">
  404. <input class="form-check-input" name="etcCheckDisease" type="checkbox" value="Y">
  405. <span class="form-check-label">기타 ( <input type="text" name="etcContentDisease" class="form-control form-control-sm w150"> )</span>
  406. </label>
  407. </td>
  408. </tr>
  409. <!-- 현재 증상 (입소 당시) -->
  410. <tr>
  411. <th rowspan="3">현재 증상<br />(입소 당시)</th>
  412. <td colspan="3">
  413. <label class="form-check form-check-inline">
  414. <input class="form-check-input" name="feverCheck" type="checkbox" value="Y">
  415. <span class="form-check-label">열감(열나는 느낌)</span>
  416. </label>
  417. <label class="form-check form-check-inline">
  418. <input class="form-check-input" name="coughCheck" type="checkbox" value="Y">
  419. <span class="form-check-label">기침</span>
  420. </label>
  421. <label class="form-check form-check-inline">
  422. <input class="form-check-input" name="colic" type="checkbox" value="Y">
  423. <span class="form-check-label">복통(배아픔)</span>
  424. </label>
  425. <label class="form-check form-check-inline">
  426. <input class="form-check-input" name="coldFitCheck" type="checkbox" value="Y">
  427. <span class="form-check-label">오한(추운 느낌)</span>
  428. </label>
  429. <label class="form-check form-check-inline">
  430. <input class="form-check-input" name="sputumCheck" type="checkbox" value="Y">
  431. <span class="form-check-label">가래</span>
  432. </label>
  433. <label class="form-check form-check-inline">
  434. <input class="form-check-input" name="ocinCheck" type="checkbox" value="Y">
  435. <span class="form-check-label">오심(구역질)</span>
  436. </label>
  437. <label class="form-check form-check-inline">
  438. <input class="form-check-input" name="chestPain" type="checkbox" value="Y">
  439. <span class="form-check-label">흉통(가슴 통증)</span>
  440. </label>
  441. </td>
  442. </tr>
  443. <tr>
  444. <td colspan="3">
  445. <label class="form-check form-check-inline">
  446. <input class="form-check-input" name="noseCheck" type="checkbox" value="Y">
  447. <span class="form-check-label">콧물 또는 코 막힘</span>
  448. </label>
  449. <label class="form-check form-check-inline">
  450. <input class="form-check-input" name="vomitingCheck" type="checkbox" value="Y">
  451. <span class="form-check-label">구토</span>
  452. </label>
  453. <label class="form-check form-check-inline">
  454. <input class="form-check-input" name="musclePainCheck" type="checkbox" value="Y">
  455. <span class="form-check-label">근육통(몸살)</span>
  456. </label>
  457. <label class="form-check form-check-inline">
  458. <input class="form-check-input" name="soreThroatCheck" type="checkbox" value="Y">
  459. <span class="form-check-label">인후통(목 아픔)</span>
  460. </label>
  461. <label class="form-check form-check-inline">
  462. <input class="form-check-input" name="diarrheaCheck" type="checkbox" value="Y">
  463. <span class="form-check-label">설사</span>
  464. </label>
  465. <label class="form-check form-check-inline">
  466. <input class="form-check-input" name="headacheCheck" type="checkbox" value="Y">
  467. <span class="form-check-label">두통(머리아픔)</span>
  468. </label>
  469. <label class="form-check form-check-inline">
  470. <input class="form-check-input" name="dyspneaCheck" type="checkbox" value="Y">
  471. <span class="form-check-label">호흡곤란(숨가쁨)</span>
  472. </label>
  473. <label class="form-check form-check-inline">
  474. <input class="form-check-input" name="fatigueCheck" type="checkbox" value="Y">
  475. <span class="form-check-label">권태감(피곤함)</span>
  476. </label>
  477. </td>
  478. </tr>
  479. <tr>
  480. <td colspan="3">
  481. <label class="form-check form-check-inline label-readonly-check">
  482. <input class="form-check-input" name="etcCheckSymptom" type="checkbox" value="Y">
  483. <span class="form-check-label">기타 ( <input type="text" name="etcContentSymptom" class="form-control form-control-sm w150"> )</span>
  484. </label>
  485. </td>
  486. </tr>
  487. <tr>
  488. <th>체온</th>
  489. <td>우측 (<input type="text" class="form-control form-control-sm w50" name="feverRight">)℃ / 좌측 (<input type="text" class="form-control form-control-sm w50" name="feverLeft">)℃</td>
  490. <th>맥박수</th>
  491. <td>
  492. (<input type="text" class="form-control form-control-sm w50" name="pulseRate">) 회/분
  493. </td>
  494. </tr>
  495. <tr>
  496. <th>호흡수</th>
  497. <td>
  498. (<input type="text" class="form-control form-control-sm w50" name="respirationRate">) 회/분
  499. </td>
  500. <th>혈압</th>
  501. <td>수축기 (
  502. <input type="text" class="form-control form-control-sm w50" name="bloodPressureLevelCon">)mmHg
  503. / 이완기 (
  504. <input type="text" class="form-control form-control-sm w50" name="bloodPressureLevelRel">)mmHg
  505. </td>
  506. </tr>
  507. <tr>
  508. <th>산소포화도</th>
  509. <td colspan="3">
  510. (<input type="text" class="form-control form-control-sm w50" name="oxygenSaturation">) %
  511. </td>
  512. </tr>
  513. </table>
  514. <div class="row mt-3">
  515. <div class="col-12">
  516. <div class="text-right">
  517. <button type="button" class="btn btn-outline-primary w100" onclick="history.back();">취소</button>
  518. <button type="submit" class="btn btn-primary w100">등록</button>
  519. </div>
  520. </div>
  521. </div>
  522. </form>
  523. </c:if>
  524. </div>
  525. </div>
  526. </div>
  527. </div>
  528. <!-- 환자관리 : 신규환자 등록 END -->
  529. </div>
  530. </main>
  531. <jsp:include page="${data._INCLUDE}/footer.jsp"></jsp:include>
  532. </div>
  533. </div>
  534. </body>
  535. </html>