<?php
/**
 * マンガ翻訳コンテスト セレモニー応募フォーム
 * data/ceremony/index.php utf8
 * 2019.01.10 takemura@ings
 */

// setting -----------------------------
//includeフォルダ指定
ini_set('include_path', get_include_path(). PATH_SEPARATOR. '../../php_inc/');
require_once('ceremony/setting.inc.php');
require_once('common/function.inc.php');
init();

// main --------------------------------
$step = isset($_GET['step']) ? $_GET['step'] : '';
if ($step == 'send') {
  require_once($send_inc);
  exit;
} elseif ($step == 'confirm') {
  require_once($confirm_inc);
  exit;
} else {
  require_once($input_inc);
  exit;
}
