Skip to content
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
2 changes: 1 addition & 1 deletion resumax_backend/resumax_algo/gemini_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async def _get_or_create_chat_session(thread_id=None):

return chat

except Exception as e:
except Exception as e:
raise Exception(f"Failed to create chat session: {e}")


Expand Down
8 changes: 6 additions & 2 deletions resumax_backend/resumax_algo/static/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,9 @@ body {
border-bottom: 1px solid var(--gray-200);
display: flex;
flex-direction: column;
width: -moz-available;
width: -webkit-fill-available;
width: fill-available;
background-color: var(--gray-50);
gap: 0.75rem; /* Consistent spacing between messages */
}
Expand Down Expand Up @@ -406,7 +408,9 @@ body {
gap: 0.75rem;
justify-content: center;
align-items: flex-end;
width: -moz-available;
width: -webkit-fill-available;
width: fill-available;
transition: all 0.3s ease;
}

Expand Down Expand Up @@ -471,7 +475,7 @@ body {
cursor: not-allowed;
transform: none;
}
.logout-btn {
.logout-btn, .password-reset-btn {
color: white;
padding: 0.5rem 1rem;
border-radius: 0.25rem;
Expand All @@ -480,7 +484,7 @@ body {
transition: background-color .7s ease;
}

.logout-btn:hover {
.logout-btn:hover, .password-reset-btn:hover {
background-color: var(--blue-700);
}
#chat-input-text {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ <h3 class="history-range-title">Today</h3>
<div class="side-panel-footer">
{% comment %} Settings and user options {% endcomment %}
<p>
<a class="settings-btn" href="{% url 'change-password' %}"><span>Change Password</span></a>
<a class="logout-btn" href="{% url 'logout' %}"><span>Logout</span></a>
</p>
<p>
<a class="logout-btn" href="{% url 'logout' %}"><span>Logout</span></a>
<a class="password-reset-btn" href="{% url 'change-password' %}"><span>Change Password</span></a>
</p>
<p>© 2021 ResuMax</p>
<p>© ResuMax 2025</p>
</div>
</nav>
<main class="main-container" id="main-container">
Expand Down
85 changes: 0 additions & 85 deletions resumax_backend/test_history.py

This file was deleted.