tracman-server/views/pro.html

35 lines
1.8 KiB
HTML
Raw Normal View History

2016-03-31 17:06:21 -06:00
{% extends 'templates/base.html' %}
{% block title %}{{ super() }} | Pro{% endblock %}
{% block main %}
<section class='dark'>
<div class='container'>
2017-03-18 11:21:48 -06:00
2016-03-31 17:06:21 -06:00
<h1>Tracman Pro</h1>
<h3>A word from the developer</h3>
<p>Hi Folks, </p>
2017-03-18 11:21:48 -06:00
<p>Glad you're enjoying my website and app. I made the whole thing, from front to backend, and I'm really proud of it! However, I'm a long-haul trucker by day and coding is just a hobby. I don't make any money off this website, and I pay the server fees out of my own pocket. Do you pity me enough to donate some <a href="https://cash.me/$KeithIrwin">money</a> or <a href="bitcoin:16KY9k6qdXqDD3mWwr8hrD7ky18AqYSJDo?label=tracman">bitcoin</a>? </p>
2016-03-31 17:06:21 -06:00
2017-03-18 11:21:48 -06:00
<p>To make a little money off this service, I'm going to be offering a pro version with more features. It'll be cheap, probably $1 or $2 per month. However, while Tracman is in beta, you can beta test the pro version too. Be sure to <a href="https://github.com/Tracman-org/Server/issues/new">inform me about any bugs</a> you encounter. And keep in mind that at some point, when we launch out of beta, Tracman Pro will <em>not</em> be free and <strong>you will lose your pro membership</strong> unless start paying for it.
2016-03-31 17:06:21 -06:00
2017-03-18 11:21:48 -06:00
<p>That said, just click the button below to test out the pro features. Keep in mind, they are as <a href="/#disclaimer">unstable</a> as the rest of this product.
2016-03-31 17:06:21 -06:00
<p>Cheers, <br>
<a href="https://keithirwin.us/">Keith Irwin</a></p>
<form class='row flexbox' action="#" method="POST">
{% if user.isPro %}
<div class='alert alert-success'><i class="fa fa-check-circle"></i> You are already pro! </div>
2017-03-18 11:21:48 -06:00
<a class='btn' href="/map">go to map</a>
2016-03-31 17:06:21 -06:00
{% else %}
<button type="submit" class='btn yellow'>GO PRO</button>
2017-03-18 11:21:48 -06:00
<a class='btn' href="/map">go home</a>
2016-03-31 17:06:21 -06:00
{% endif %}
</form>
</div>
</section>
{% endblock %}