AvocadoAmber/AvocadoEdition_Light/install/index.php

63 lines
1.7 KiB
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-19 20:48:52 +09:00
include_once('../config.php');
$theme_1 = "#BEBE8E";
$theme_2 = "#7F7F5F";
$theme_3 = "#7C7C4C";
$theme_4 = "#b0c4de";
$theme_5 = "#727F99";
$theme_6 = "#7488B2";
$title = G5_VERSION . " 라이센스 확인 1/3";
include_once('./install.inc.php');
2022-09-17 20:50:50 +09:00
?>
<?php
if ($exists_data_dir && $write_data_dir) {
2024-09-19 20:48:52 +09:00
// 필수 모듈 체크
require_once('./library.check.php');
?>
<div class="ins_inner">
2022-09-17 20:50:50 +09:00
<p>
2024-09-19 20:48:52 +09:00
<strong class="st_strong">라이센스(License) 내용을 반드시 확인하십시오.</strong><br>
라이센스에 동의하시는 경우에만 설치가 진행됩니다.
2022-09-17 20:50:50 +09:00
</p>
<div class="ins_ta ins_license">
2024-09-19 20:48:52 +09:00
<textarea name="textarea" id="ins_license"
readonly><?php echo implode('', file('./AVOCADO.LICENSE.txt')); ?></textarea>
2022-09-17 20:50:50 +09:00
</div>
2024-09-19 20:48:52 +09:00
<p>
<strong class="st_strong">그누보드 라이센스</strong><br>
라이센스에 동의하시는 경우에만 설치가 진행됩니다.
2022-09-17 20:50:50 +09:00
</p>
2024-09-19 20:48:52 +09:00
<div class="ins_ta ins_license">
<textarea name="textarea" id="ins_license" readonly><?php echo implode('', file('./LICENSE.txt')); ?></textarea>
2022-09-17 20:50:50 +09:00
</div>
2024-09-19 20:48:52 +09:00
<form action="./install_config.php" method="post" onsubmit="return frm_submit(this);">
<div id="ins_agree">
<label for="agree">동의합니다.</label>
<input type="checkbox" name="agree" value="동의함" id="agree">
</div>
<div class="inner_btn">
<input type="submit" value="다음">
</div>
</form>
</div>
<script>
function frm_submit(f) {
if (!f.agree.checked) {
2022-09-17 20:50:50 +09:00
alert("라이센스 내용에 동의하셔야 설치가 가능합니다.");
return false;
2024-09-19 20:48:52 +09:00
}
return true;
2022-09-17 20:50:50 +09:00
}
2024-09-19 20:48:52 +09:00
</script>
<?php
2022-09-17 20:50:50 +09:00
} // if
?>
<?php
2024-09-19 20:48:52 +09:00
include_once('./install.inc2.php');
2022-09-17 20:50:50 +09:00
?>