31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>관리자 로그인</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-light">
|
|
<div class="container mt-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-4">
|
|
<h4 class="mb-3">관리자 로그인</h4>
|
|
|
|
<div class="alert alert-danger">메시지</div>
|
|
|
|
<form>
|
|
<div class="mb-3">
|
|
<label class="form-label">아이디</label>
|
|
<input type="text" name="field1" class="form-control" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">비밀번호</label>
|
|
<input type="password" name="file2" class="form-control" required>
|
|
</div>
|
|
<button class="btn btn-primary w-100">로그인</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |