Skip to content

Commit

Permalink
wasnt a file structure issue, reverted file structure
Browse files Browse the repository at this point in the history
also changed Submit buton name to Download as per public opinion
  • Loading branch information
AnveshakR committed Mar 4, 2024
1 parent 40259d2 commit 30d2d45
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ WORKDIR /app
RUN apt-get update
RUN apt-get install ffmpeg libsm6 libxext6 wget -y
RUN pip install -r requirements.txt
CMD ["gunicorn", "--preload", "--conf", "gunicorn_conf.py", "webapp:app"]
CMD ["gunicorn", "--preload", "--conf", "src/gunicorn_conf.py", "webapp:app"]
File renamed without changes.
2 changes: 1 addition & 1 deletion templates/mainpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h1>Spotify Poster Generator</h1>

<form id="form" class="form-group container" method="POST" action="/result" autocomplete="off" onsubmit="removeNotification()">
<input class="form-control input-field" type="text" id="album_link" name="album_input" placeholder="Enter Spotify Album/Song Link">
<input class="form-control btn btn-outline-light submit-button" type="submit" value="Submit">
<input class="form-control btn btn-outline-light submit-button" type="submit" value="Download">

<input type="hidden" id="hidden_width_input" name="width">
<input type="hidden" id="hidden_height_input" name="height">
Expand Down

0 comments on commit 30d2d45

Please sign in to comment.