diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/A11200/readme.md b/A11200/readme.md deleted file mode 100644 index 59dc684..0000000 --- a/A11200/readme.md +++ /dev/null @@ -1,7 +0,0 @@ -# Uband Python S2 项目团队:八月的风 - -# 人物志: - -# 组员1:A11200 华风 -大家好,我叫华风。 -是一名工作族,坐标上海,很高兴认识大家! diff --git a/A14365/readme.md b/A14365/readme.md deleted file mode 100644 index 8b13789..0000000 --- a/A14365/readme.md +++ /dev/null @@ -1 +0,0 @@ - diff --git a/README.md b/README.md index e401913..9f1bb90 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,6 @@ A14365-野奔 我是野奔,工作党,大家多多关照哟 + +A10355-新欢 +我是新欢,工作党,python初学者 \ No newline at end of file diff --git a/Teamwork/readme.md b/Teamwork/readme.md index 8b13789..2f598f6 100644 --- a/Teamwork/readme.md +++ b/Teamwork/readme.md @@ -1 +1,13 @@ +# uband-S2-Wind-teamwork +uband友班编程作业 + +## 背景 + +## 需求 + +## 发布 + +## 其他 + +## 参考资料 diff --git a/Teamwork/run.py b/Teamwork/run.py new file mode 100644 index 0000000..40e62ca --- /dev/null +++ b/Teamwork/run.py @@ -0,0 +1,15 @@ +from flask import Flask +from flask import render_template + +app = Flask(__name__) + +@app.route('/') +def hello_world(): + return render_template('index.html') + +@app.route('/details') +def details(): + return render_template('index.html') + +if __name__ == '__main__': + app.run(debug=True) \ No newline at end of file diff --git a/Teamwork/static/css/app.css b/Teamwork/static/css/app.css new file mode 100644 index 0000000..884928f --- /dev/null +++ b/Teamwork/static/css/app.css @@ -0,0 +1,17 @@ + + .head_img{ + width:100px; + height:100px; + margin: 0 auto; + display:block; + border-radius:50%; + + } + .head_form{ + text-align:center; + font-size:18px; + } + .paragraph{ + text-align:center; + font-size:13px; + } diff --git a/Teamwork/static/img/liudehua.jpg b/Teamwork/static/img/liudehua.jpg new file mode 100644 index 0000000..f740bf8 Binary files /dev/null and b/Teamwork/static/img/liudehua.jpg differ diff --git a/Teamwork/templates/index.html b/Teamwork/templates/index.html new file mode 100644 index 0000000..aab1449 --- /dev/null +++ b/Teamwork/templates/index.html @@ -0,0 +1,19 @@ + + + + + + WIND + + + + +
+

野奔

+
+

我是野奔

+

任劳任怨的搬砖狗

+ +
+ + \ No newline at end of file