18 lines
577 B
PHP
18 lines
577 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>게스트</title>
|
|
<style>
|
|
body{background-color: #f2f2f2;}
|
|
.box{display: flex;align-items: center;justify-content: center;width:300px; height:200px; background-color: #fff;position: absolute;top:50%;left: 50%;transform: translate(-50%, -50%);border-radius: 15px;}
|
|
.box p{font-size:30px;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<p>승인 대기중</p>
|
|
</div>
|
|
</body>
|
|
</html> |