회원 관리 프로그램 제작 성공 화면
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>회원 관리 프로그램</title>
<style> /* 기본적인 페이지 스타일 */
body {
font-family: 'Arial', sans-serif;
background-color: #f8f9fa;
text-align: center;
margin: 50px;
} /* 콘텐츠 박스 스타일 */
.container {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
display: inline-block;
}
h2 { /* 제목 스타일 */
color: #28a745;
}
.btn { /* 버튼 스타일 */
display: block;
width: 200px;
padding: 10px;
margin: 10px auto;
text-decoration: none;
color: white;
background-color: #28a745;
border-radius: 5px;
font-size: 18px;
font-weight: bold;
}
.btn:hover { /* 버튼 호버 효과 */
background-color: #218838;
}
</style>
</head>
<body>
<!-- 메인 콘텐츠 영역 -->
<div class="container">
<h2><?php echo "회원관리 프로그램 제작 성공"; ?></h2>
<hr>
<p style="font-size: 20px; font-weight: bold;">
<?php echo "=> 회원 관리 프로그램 가동 <="; ?>
</p>
<a href="login_form.php" class="btn">로그인</a> <!-- 로그인 버튼 -->
<a href="add_form.php" class="btn">회원 가입</a> <!-- 회원 가입 버튼 -->
</div>
</body>
</html>
이 코드는 문구만 다르고 main.php의 코드와 동일하다.
https://www.yes24.com/Product/Goods/19584929
이 코드는 책 "PHP 프로그래밍 정복"의 내용을 참고하여, 최신 PHP 버전에 맞게 수정하였습니다.
이전 글
'웹 개발' 카테고리의 다른 글
[PHP] 회원가입에서 아이디 중복 체크 (0) | 2025.02.24 |
---|---|
[PHP] 회원 가입 페이지 (0) | 2025.02.24 |
[PHP] 관리자 페이지 제작 & DB 접속 (0) | 2025.02.13 |
[APM] Ubuntu 22.04 APM 설치 (0) | 2025.02.10 |
Cookie & Session (0) | 2025.01.23 |