-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexit.php
35 lines (29 loc) · 930 Bytes
/
exit.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
<!-- 実験WebPage created by Wakayama Univ. AMLAB -->
<!-- 退出 -->
<!DOCTYPE html>
<html lang="ja">
<head>
<head>
<title>Web聴取実験</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="./ExpWeb.css">
</head>
<body>
<?php require('./param.php'); ?>
<header><h1><?php echo $title; ?></h1></header>
<section>
<h2>ありがとうございました</h2>
<div>
和歌山大学 聴覚メディア研究室のホームページへ遷移します。
</div>
<form method="POST" action="https://media.sys.wakayama-u.ac.jp/AuditoryMediaLab/">
<button class="lbtn"><div class="label">聴覚メディア研究室へ</div></button>
</form>
</section>
<hr />
<footer>
<p><?php echo $footer; ?></p>
</footer>
</body>
</html>