tracman-server/views/help.html

50 lines
1.6 KiB
HTML
Raw Normal View History

{% extends 'templates/base.html' %}
{% block title %}{{super()}} | Help{% endblock %}
{% block main %}
2017-03-15 01:36:36 -06:00
<section class='container'>
2017-03-18 11:21:48 -06:00
<h1>Help</h1>
<p><i>Welcome to Tracman! Here's how to get started. </i></p>
<h2>Website map controls</h2>
<p><u>Set</u> sets your location once using this device's geolocation. On a GPS-enabled phone, the location will be set to its coordinates. </p>
<p><u>Track</u> sets your location as above, but continues to track your location as long as you keep this window open. To track your location in the background, check out the <a href="/android">android app</a>. </p>
<p><u>Clear</u> clears your location instantly. Anyone looking at your map will see a blank screen instead. Use this to hide your location. </p>
<h2>Website settings</h2>
<p></p>
<h2>Android app</h2>
<p></p>
<h2>FAQ</h2>
<ul>
<li>How do I share my location?</li>
<li>How accurate is the location?</li>
<li>Can I contribute to Tracman?</li>
</ul>
<h3>How do I share my location?</h3>
<p>You can share your map's url with anyone. The URL is {% if user %}<a href="https://tracman.org/map/{{user.slug}}">https://tracman.org/map/{{user.slug}}</a>{% else %}<u>https://tracman.org/map/&gt;your-slug&lt;</u>{% endif %}. </p>
<h3>How accurate is the location?</h3>
<p></p>
<h3>Can I contribute to Tracman?</h3>
<p></p>
2017-03-15 01:36:36 -06:00
2017-03-15 01:58:19 -06:00
<a href="/map" class='btn' style="width:60%; position:relative; left:20%; background:#333">Go to map <i class='fa fa-angle-right'></i></a>
2017-03-15 01:36:36 -06:00
</section>
{% endblock %}