Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +3 -6
templates/index.html
CHANGED
@@ -79,10 +79,7 @@
|
|
79 |
|
80 |
<div class="result-buttons">
|
81 |
<button class="result-button" id="historyButton" onclick="showHistory()">会話履歴を表示</button>
|
82 |
-
|
83 |
-
<form action="/feedback">
|
84 |
-
<button type="submit">Go to Feedback</button>
|
85 |
-
</form>
|
86 |
</div>
|
87 |
|
88 |
<script>
|
@@ -202,13 +199,13 @@
|
|
202 |
|
203 |
function showHistory() {
|
204 |
// 会話履歴表示の画面があれば、そのページへ遷移する例
|
205 |
-
// window.location.href = 'history
|
206 |
alert('会話履歴を表示する機能は未実装です。');
|
207 |
}
|
208 |
|
209 |
function showResults() {
|
210 |
// フィードバック画面へ遷移
|
211 |
-
window.location.href = 'feedback
|
212 |
}
|
213 |
</script>
|
214 |
</body>
|
|
|
79 |
|
80 |
<div class="result-buttons">
|
81 |
<button class="result-button" id="historyButton" onclick="showHistory()">会話履歴を表示</button>
|
82 |
+
<button class="result-button" id="feedbackButton" onclick="showResults()">フィードバック画面を表示</button>
|
|
|
|
|
|
|
83 |
</div>
|
84 |
|
85 |
<script>
|
|
|
199 |
|
200 |
function showHistory() {
|
201 |
// 会話履歴表示の画面があれば、そのページへ遷移する例
|
202 |
+
// window.location.href = 'history';
|
203 |
alert('会話履歴を表示する機能は未実装です。');
|
204 |
}
|
205 |
|
206 |
function showResults() {
|
207 |
// フィードバック画面へ遷移
|
208 |
+
window.location.href = 'feedback';
|
209 |
}
|
210 |
</script>
|
211 |
</body>
|