tracman-server/views/help.html

22 lines
970 B
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'>
<h2>Help</h2>
<p><i>Welcome to Tracman! Here's how to get started. </i></p>
<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. On a phone, this can drain the battery fast, so be careful! </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>
<p>Share your location by sending the URL to anyone. They won't need an account to view the map. </p>
<a href="/map" class='btn' style="width:60%;background:#333">Go to map <i class='fa fa-angle-right'></i></a>
</section>
{% endblock %}