17 lines
638 B
HTML
17 lines
638 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
<h1>Frequently Asked Questions</h1>
|
|
|
|
<h4>How do I book a property?</h4>
|
|
<p>To book a property, simply click the "Book Now" button on the property's detail page and fill out the booking form.</p>
|
|
|
|
<h4>Can I cancel a booking?</h4>
|
|
<p>Currently, cancellation is not supported through the website. Please contact us directly to cancel a booking.</p>
|
|
|
|
<h4>How do I list my own property?</h4>
|
|
<p>After creating an account, you can click on the "Create Listing" link in the navigation bar to add your property.</p>
|
|
</div>
|
|
{% endblock %}
|