-
Notifications
You must be signed in to change notification settings - Fork 0
/
fixation.php
49 lines (46 loc) · 1.22 KB
/
fixation.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
<?php
include("included/session_start.php");
$next_php_name = $_SESSION["eval_php"]
?>
<?php include("included/declaration.php"); ?>
<head>
<?php include("included/head.php"); ?>
<style>
.cross {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 10px; /* 縦棒の幅 */
height: 80px; /* 縦棒の長さ */
background: black; /* 縦棒の色 */
}
.cross::before {
content: "";
position: absolute;
top: 35px; /* 横棒のy位置 */
left: -35px; /* 横棒のX位置 */
width: 80px; /* 横棒の長さ */
height: 10px; /* 横棒の幅 */
background: black; /* 横棒の色 */
}
</style>
</head>
<body>
<?php
$php_name = basename(__FILE__);
include("included/profile.php");
?>
<div>
<div class="cross"></div>
</div>
</body>
</html>
<?php include("included/js.php"); ?>
<script>
const FIX_TIME_SECOND = 1
var next_php_name = '<?php echo $next_php_name; ?>';
setTimeout(() => {
window.location.href = next_php_name;
}, FIX_TIME_SECOND*1000);
</script>