Skip to content

Commit

Permalink
MODIFIED: responsive ui for ats and remove localhost from it
Browse files Browse the repository at this point in the history
  • Loading branch information
AquibPy committed May 3, 2024
1 parent 3f24ab1 commit 4cea35e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions templates/ats.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,14 @@
.copy-btn:hover {
background-color: #5a6268;
}
@media (max-width: 800px) {
.container {
margin: 20px auto;
}
}
@media (max-width: 600px) {
.container {
padding: 20px;
max-width: 100%;
padding: 15px;
}
input[type="text"],
input[type="file"],
Expand Down Expand Up @@ -278,7 +282,7 @@ <h1>Smart ATS</h1>
formData.append('job_description', jobDescription);

try {
const response = await fetch('http://127.0.0.1:8000/smart_ats', {
const response = await fetch('https://llm-pgc4.onrender.com/smart_ats', {
method: 'POST',
body: formData
});
Expand Down

0 comments on commit 4cea35e

Please sign in to comment.