-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.php
54 lines (51 loc) · 1.48 KB
/
message.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
require_once(dirname(__FILE__).'/lib/setting.php');
if (!empty($_GET['m'])) {
switch ($_GET['m']){
case 'done':
$title = '登録完了';
$message = 'Registration is complete!!';
break;
case 'double':
$title = '再登録しました';
$message = 're-Registration is complete!!';
break;
default:
$title = 'エラー';
$message = 'Error!! Return to MainPage.';
}
} else {
$title = 'エラー';
$message = 'Error!! Return to MainPage.';
}
?>
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="robots" content="noindex,nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $title; ?></title>
<link rel="icon" href="./favicon.ico">
<link rel="stylesheet" href="<?php echo Setting::BootStrapCSS; ?>">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Donegal+One">
<style>
<?php echo Setting::CSS; ?>
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1>#kawaii_onnanoko_hshs_sitai</h1>
<h2>I want to Kunka Kunka a cute girl.</h2>
<h3><?php echo $message; ?></h3>
<a href="./" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-left"></span> Return</a>
</div>
</div>
</div>
<script src="<?php echo Setting::jQuery; ?>"></script>
<script src="<?php echo Setting::BootStrapJS; ?>"></script>
</body>
</html>