-
Notifications
You must be signed in to change notification settings - Fork 0
/
alert.php
49 lines (48 loc) · 1.44 KB
/
alert.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 'inc_head.php';
?>
<!doctype html>
<html lang="ko">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<title>SPENGO</title>
<link rel="stylesheet" type="text/css" href="css/css.css?4.0.0">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body>
<div class="top">
</div>
<div class="head">
<a href="index.php"><h1>Spengo</h1><h4>Learn english like sponge</h4></a>
</div>
<div class="menu">
</div>
<div class="contents">
<?php
if ($code == '0') {
?>
<h2>이미 있는 사용자 입니다.</h2>
<a href="join.php">돌아 가기</a>
<?php
} else if($code == '1') {
?>
<h2>사용자 이름 또는 비밀번호가 틀렸습니다.</h2>
<a href="login.php">돌아 가기</a>
<?php
}else if($code == '2') {
?>
<h2>회원가입이 완료되었습니다.</h2>
<a href="index.php">메인 페이지로 가기</a>
<?php
}
?>
</div>
<div class="foot">
Maker : Yang with Kim and Park in Gachon uni / Email : [email protected]
</div>
</body>
</html>