diff --git a/app.py b/app.py new file mode 100644 index 00000000..4a0c8189 --- /dev/null +++ b/app.py @@ -0,0 +1,20 @@ +from flask import Flask, request, send_from_directory + +app = Flask(__name__) + +@app.route('/') +def main(): + return "main" + +@app.route('/sections/input-areas/inputs.html') +def serve_inputs_html(): + return send_from_directory('static/sections/input-areas', 'inputs.html') + +# Route to handle form submission +@app.route('/submit', methods=['POST']) +def submit(): + first_name = request.form.get('first_name') + return f"Received First Name: {first_name}" + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=5000) diff --git a/assets/fonts/nucleo-icons.svg b/assets/fonts/nucleo-icons.svg index 6654c1a2..e69de29b 100644 --- a/assets/fonts/nucleo-icons.svg +++ b/assets/fonts/nucleo-icons.svg @@ -1,312 +0,0 @@ - - - diff --git a/assets/fonts/nucleo-icons.ttf b/assets/fonts/nucleo-icons.ttf index e18680a5..e69de29b 100644 Binary files a/assets/fonts/nucleo-icons.ttf and b/assets/fonts/nucleo-icons.ttf differ diff --git a/assets/fonts/nucleo-icons.woff b/assets/fonts/nucleo-icons.woff index 23cb30a9..e69de29b 100644 Binary files a/assets/fonts/nucleo-icons.woff and b/assets/fonts/nucleo-icons.woff differ diff --git a/assets/fonts/nucleo-icons.woff2 b/assets/fonts/nucleo-icons.woff2 index 20db809c..e69de29b 100644 Binary files a/assets/fonts/nucleo-icons.woff2 and b/assets/fonts/nucleo-icons.woff2 differ diff --git a/assets/fonts/nucleo.ttf b/assets/fonts/nucleo.ttf index 8e74ea89..e69de29b 100644 Binary files a/assets/fonts/nucleo.ttf and b/assets/fonts/nucleo.ttf differ diff --git a/assets/fonts/nucleo.woff b/assets/fonts/nucleo.woff index c1350625..e69de29b 100644 Binary files a/assets/fonts/nucleo.woff and b/assets/fonts/nucleo.woff differ diff --git a/assets/fonts/nucleo.woff2 b/assets/fonts/nucleo.woff2 index b2b79da5..e69de29b 100644 Binary files a/assets/fonts/nucleo.woff2 and b/assets/fonts/nucleo.woff2 differ diff --git a/assets/img/bg-stock-landing.jpeg b/assets/img/bg-stock-landing.jpeg new file mode 100644 index 00000000..0a2f9f68 Binary files /dev/null and b/assets/img/bg-stock-landing.jpeg differ diff --git a/genezio.yaml b/genezio.yaml index 9e608a92..b3f91fa3 100644 --- a/genezio.yaml +++ b/genezio.yaml @@ -1,18 +1,22 @@ -# The name of the project. -name: material-kit -# The region where the project is deployed. -region: us-east-1 -# The version of the Genezio YAML configuration to parse. -yamlVersion: 2 -# Information about the frontend, including the path, language, and publish directory. -# It is optional. It can also be an array if there are multiple frontends you want to deploy. frontend: - # The folder where the frontend scripts will run. - path: ./ - # The directory that will be published to the CDN. It is relative to the path. - publish: ./ - scripts: - # List of scripts that build your frontend before deployment. It should populate the specified `publish` directory. - build: npm install - # List of scripts to run before deploying the frontend. - deploy: npm install + path: ./ + publish: ./ + scripts: + build: npm install + deploy: npm install + subdomain: flask-stock-pattern-recognition + +backend: + path: ./ + language: + name: python + packageManager: pip + functions: + - name: hello-world-flask-app-function + path: ./ + handler: app + entry: app.py + +name: flask-stock-pattern-recognition +region: eu-central-1 +yamlVersion: 2 diff --git a/index.html b/index.html index 0a1f3f1e..77703fee 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ * Material Kit 3 - v3.1.0 ========================================================= -* Product Page: https://www.creative-tim.com/product/material-kit +* Product Page: https://www.creative-tim.com/product/material-kit * Copyright 2024 Creative Tim (https://www.creative-tim.com) * Coded by www.creative-tim.com @@ -35,12 +35,12 @@
Input static
-<section class="py-7">
- <div class="container">
- <div class="row justify-space-between py-2">
- <div class="col-lg-4 mx-auto">
- <div class="input-group input-group-static mb-4">
- <label>First Name</label>
- <input class="form-control" placeholder="eg. Thomas Shelby" type="text" >
- </div>
- </div>
- </div>
- </div>
-</section>
- Input outline
-<section class="py-7">
- <div class="container">
- <div class="row justify-space-between py-2">
- <div class="col-lg-4 mx-auto">
- <div class="input-group input-group-outline mb-4">
- <label class="form-label">Outline</label>
- <input class="form-control" type="text" >
- </div>
- </div>
- </div>
- </div>
-</section>
- Input with icon
-<section class="py-7">
- <div class="container">
- <div class="row justify-space-between py-2">
- <div class="col-lg-4 mx-auto">
- <div class="input-group input-group-dynamic mb-4">
- <span class="input-group-text"><i class="fas fa-search" aria-hidden="true"></i></span>
- <input class="form-control" placeholder="Search" type="text" >
- </div>
- </div>
- </div>
- </div>
-</section>
- Input success
-<section class="py-7">
- <div class="container">
- <div class="row justify-space-between py-2">
- <div class="col-lg-4 mx-auto">
- <input type="text" placeholder="Success" class="form-control is-valid" >
- </div>
- </div>
- </div>
-</section>
- Input error
-<section class="py-7">
- <div class="container">
- <div class="row justify-space-between py-2">
- <div class="col-lg-4 mx-auto">
- <input type="text" placeholder="Error" class="form-control is-invalid" >
- </div>
- </div>
- </div>
-</section>
- Input disabled
-<section class="py-7">
- <div class="container">
- <div class="row justify-space-between py-2">
- <div class="col-lg-4 mx-auto">
- <input type="text" placeholder="Disabled" class="form-control" disabled>
- </div>
- </div>
- </div>
-</section>
-