From 874286fbea2dcd536bc5e02354b23c1acdb8e4f3 Mon Sep 17 00:00:00 2001 From: kirinjewelry Date: Wed, 28 Feb 2024 07:40:36 +0100 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20''?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Kirin Jewelry is a manufacturer, jewelry wholesaler, and exporter, with a factory located in Panyu, Guangzhou, Guangdong Province, and a sales office located in Zhuhai, Guangdong Province, China, with 17 years, about 500+ workers, 2.8 million pieces items annual capacity. We develop new designs by ourselves and can develop customers' designs as well if we get the pictures or samples from customers. We [wholesale 14k gold jewelry](https://www.kirinjewelrywholesale.com/collections/wholesale-14k-gold-jewelry) can keep the exclusivity for our customers for more than 6 months or longer. It depends on customers' request. Our sterling silver and brass jewelry emphasizes quality control in every step of the jewelry work. To avoid missing stones in particular, pave items need to be used tumbling and ultrasonic tests after setting stones. Besides, we prevent the mistake which may cause our jewelry not to be preferred by us before they reach our customers. About this well-controlled working process, you can be certain that we are a reliable source of sterling silver jewelry which is deserver to show to your valued customer. Signed-off-by: kirinjewelry --- flask-app.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 flask-app.py diff --git a/flask-app.py b/flask-app.py new file mode 100644 index 0000000..0bdabf8 --- /dev/null +++ b/flask-app.py @@ -0,0 +1,13 @@ +from flask import Flask +from flask import Flask, redirect, url_for,render_template + +app = Flask(__name__) + + +@app.route('/') +def hello_world(): + return render_template("modal2.html") + + +if __name__ == '__main__': + app.run(debug=True)