Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

landing page changes #37

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/recommenderapp/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import json
import sys

from flask import Flask, jsonify, render_template, request
from flask import Flask, jsonify, render_template, request, redirect, url_for
from flask_cors import CORS
from search import Search
from utils import beautify_feedback_data, send_email_to_user
Expand All @@ -27,7 +27,7 @@ def landing_page():
"""
Renders the landing page.
"""
return render_template("search_page.html")
return render_template("landing_page.html")


@app.route("/get_started", methods=["POST"])
Expand Down
Binary file added src/recommenderapp/static/image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/recommenderapp/static/stylesheet.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
.landing-page {
background-image: url("image.jpg");
background-size: cover;
color: azure !important;
}


body {
background-image: url("224299.jpg");
background-size: cover;
Expand Down