-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrol_data.php
More file actions
33 lines (32 loc) · 1.08 KB
/
control_data.php
File metadata and controls
33 lines (32 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data Control</title>
<link rel="stylesheet" href="./CSS/choose_button_style.css">
</head>
<body>
<div class = "all">
<div class="header">
<h1>관리자 페이지</h1>
</div>
<div class="button-container">
<!-- 영단어 관리 버튼 -->
<form action="control_word.php" method="post">
<input class="control-word-button" type="submit" value ="">
<div class="button-text">영단어 관리</div>
</form>
<!-- 모의고사 지문 관리 버튼 -->
<form action="control_passage.php" method="post">
<input class="control-passage-button" type="submit" value="">
<div class="button-text">모의고사 지문 관리</div>
</form>
</div>
<div class = "footer">
<a href="main.php" style="color: white">메인으로</a>
<p>© 2023 홈페이지. All rights reserved.</p>
</div>
</div>
</body>
</html>