You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
968 B

7 years ago
7 years ago
7 years ago
7 years ago
  1. <div class="page-header">
  2. <h1 class="page-title">약관 설정</h1>
  3. </div>
  4. <?=form_open_multipart("admin/setting/update")?>
  5. <input type="hidden" name="reurl" value="<?=base_url('admin/setting/agreement')?>">
  6. <div data-ax-tbl>
  7. <div data-ax-tr>
  8. <div data-ax-td class="width-100">
  9. <div data-ax-td-label>사이트 이용약관</div>
  10. <div data-ax-td-wrap>
  11. <?=get_editor('setting[agreement_site]',$this->site->config('agreement_site'))?>
  12. </div>
  13. </div>
  14. </div>
  15. <div data-ax-tr>
  16. <div data-ax-td class="width-100">
  17. <div data-ax-td-label>개인정보 처리방침</div>
  18. <div data-ax-td-wrap>
  19. <?=get_editor('setting[agreement_privacy]',$this->site->config('agreement_privacy'))?>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24. <div class="text-center MT10">
  25. <button class="btn btn-primary">저장하기</button>
  26. </div>
  27. <?=form_close()?>