-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.php
More file actions
37 lines (35 loc) · 815 Bytes
/
main.php
File metadata and controls
37 lines (35 loc) · 815 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirect Example</title>
<style>
/* Flexbox로 중앙 정렬 */
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
h1 {
margin: 20px 0;
text-align: center;
}
img {
max-width: 80%;
height: auto;
}
</style>
<?php
// 1초 후 로그인 페이지로 리디렉션
header("Refresh: 2; URL=login_signup/login.php");
?>
</head>
<body>
<h1>Cat Everywhere</h1>
<img src="source/cat1.jpg" alt="Cat Image">
</body>
</html>