diff --git a/templates/all.html b/templates/all.html
new file mode 100644
index 0000000..1624534
--- /dev/null
+++ b/templates/all.html
@@ -0,0 +1,164 @@
+{% extends "base.html" %}
+
+{% block title %}数据操作 - 紫金·稷下薪火·云枢智海师生成果共创系统{% endblock %}
+
+{% block content %}
+
+
+
+    
所有已录入的奖项信息
+    
在此页面可以查看所有已录入的成果信息,并进行删除操作
+
+    
+        
+            
+                
+                    | 比赛/论文名称 | 
+                    项目名称 | 
+                    学生 | 
+                    指导老师 | 
+                    操作 | 
+                
+            
+            
+                {% if data %}
+                    {% for item in data %}
+                        
+                            | {{ item.id or '无' }} | 
+                            {{ item.name or '无' }} | 
+                            {% if item.students is string %}{{ item.students or '无' }}{% else %}{{ item.students|join(', ') if item.students else '无' }}{% endif %} | 
+                            {% if item.teacher is string %}{{ item.teacher or '无' }}{% else %}{{ item.teacher|join(', ') if item.teacher else '无' }}{% endif %} | 
+                            
+                                
+                             | 
+                        
+                    {% endfor %}
+                {% else %}
+                    
+                        | 暂无数据 | 
+                    
+                {% endif %}
+            
+        
+    
+
+    
返回首页
+
 
+{% endblock %}
\ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..7983e7e
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,177 @@
+
+
+
+    
+    
+    {% block title %}紫金·稷下薪火·云枢智海师生成果共创系统{% endblock %}
+    
+
+
+    
+
+    
+
+    
+        {% block content %}
+        {% endblock %}
+    
+
+    
+    
+
+
\ No newline at end of file
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..96c90ba
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,238 @@
+{% extends "base.html" %}
+
+{% block title %}录入成果 - 紫金·稷下薪火·云枢智海师生成果共创系统{% endblock %}
+
+{% block content %}
+
+    
+         成果录入
+    
+    
请上传包含成果信息的图片(如获奖证书、论文封面等),系统将自动识别关键信息
+
+    
+
+    
+
 
+
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/templates/results.html b/templates/results.html
new file mode 100644
index 0000000..e895619
--- /dev/null
+++ b/templates/results.html
@@ -0,0 +1,182 @@
+
+
+{% extends "base.html" %}
+
+{% block title %}查询统计 - 紫金·稷下薪火·云枢智海师生成果共创系统{% endblock %}
+
+{% block content %}
+
+
+
+    
奖项成果查询
+    
输入关键词(如姓名、奖项名等)搜索已录入的成果信息
+    
+    
+        
+    
+    
+    
+        
+    
+
 
+
+
+{% endblock %}