-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmogo.html
More file actions
75 lines (66 loc) · 2.42 KB
/
mogo.html
File metadata and controls
75 lines (66 loc) · 2.42 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>AI 맞춤형 모의고사 생성기 - MOGO</title>
<link rel="stylesheet" href="mogo.css" />
</head>
<body>
<button class="back-btn" onclick="goBack()">← 메인으로</button>
<div class="wrap">
<header class="header">
<h1>📘 MOGO - AI 맞춤형 모의고사 생성기</h1>
<p>학년별 과목 선택 → AI가 자동으로 문제 세트를 구성합니다.</p>
</header>
<!-- 입력 폼 -->
<section class="card">
<h2>1️⃣ 학생 정보 입력</h2>
<form id="mogoForm">
<label>이름</label>
<input
id="name"
type="text"
placeholder="이름을 입력하세요"
required
/>
<label>학년</label>
<select id="grade" required>
<option value="">-- 선택 --</option>
<option value="1">1학년</option>
<option value="2">2학년</option>
<option value="3">3학년</option>
</select>
<label>과목</label>
<select id="subject" required>
<option value="">-- 학년을 먼저 선택하세요 --</option>
</select>
<label>가장 최근 점수(예시: 100점 혹은 50점)</label>
<input
id="score"
type="number"
placeholder="예: 85"
required
min="0"
max="100"
/>
<label>문제 선호 유형</label>
<div class="checkbox-group">
<label><input type="checkbox" value="개념" /> 개념 확인</label>
<label><input type="checkbox" value="응용" /> 응용형</label>
<label><input type="checkbox" value="고난도" /> 고난도</label>
<label><input type="checkbox" value="서술형" /> 서술형</label>
<label><input type="checkbox" value="객관식" /> 객관식</label>
</div>
<button type="submit" class="btn-primary">AI 문제 세트 만들기</button>
</form>
</section>
<!-- 결과 -->
<section id="resultSection" class="card" style="display: none">
<h2>2️⃣ 맞춤형 문제 구성 결과</h2>
<div id="resultSummary"></div>
<div id="resultList" class="result-list"></div>
</section>
</div>
<script src="mogo.js"></script>
</body>
</html>