{% extends 'hosting_app/base_hosting.html' %} {% block title %}Set New Client Password | Host in Sri Lanka{% endblock %} {% block content %}
{% if validlink %}
Hosting Client Security

Choose your new password

Create a secure new password for your Hosting Client account. After saving it, you can log in again and continue managing your bookings, payments, and hosted experiences.

Use a password that is unique to this account.
Use a mix of letters, numbers, and special characters where possible.
Do not share your password with anyone.

Set New Password

Enter and confirm your new password below.

{% csrf_token %}
{{ form.new_password1 }} {% if form.new_password1.help_text %}
{{ form.new_password1.help_text|safe }}
{% endif %} {% for error in form.new_password1.errors %}
{{ error }}
{% endfor %}
{{ form.new_password2 }} {% if form.new_password2.help_text %}
{{ form.new_password2.help_text|safe }}
{% endif %} {% for error in form.new_password2.errors %}
{{ error }}
{% endfor %}
Security note:
After changing your password, you will be able to sign in using your new password.
{% else %}

Invalid reset link

This password reset link is invalid, expired, or has already been used. Please request a new password reset link to continue.

Why this may happen:
The link may have expired, the password may already have been reset, or the reset link may have been copied incorrectly.
{% endif %}
{% endblock %}