|
|
|
@ -2,13 +2,19 @@
@@ -2,13 +2,19 @@
|
|
|
|
|
{% import 'bootstrap/wtf.html' as wtf %} |
|
|
|
|
|
|
|
|
|
{% block app_content %} |
|
|
|
|
<h1>Welcome, {{ user.name }}!</h1> |
|
|
|
|
<p> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-xs-0 col-md-1"></div> |
|
|
|
|
<div class="col-xs-12 col-md-10"> |
|
|
|
|
<h1>Welcome, {{ user.name }}!</h1> |
|
|
|
|
<p> |
|
|
|
|
If you found this page, it probably means someone who is organising a hunt invited you by |
|
|
|
|
sending a link or QR-code to this page. You can start playing right away, if and if you get |
|
|
|
|
logged out just visit this page again. However, if you want to be sure other people can't |
|
|
|
|
steal this account, please set a password. |
|
|
|
|
</p> |
|
|
|
|
<a href="{{ url_for('main.index') }}"><button class="btn btn-primary">Set Password</button></a> |
|
|
|
|
<a href="{{ url_for('auth.user_hash_login', auth_hash=user.auth_hash, login='true') }}"><button class="btn btn-primary">Start Playing!</button></a> |
|
|
|
|
{% endblock %} |
|
|
|
|
</p> |
|
|
|
|
<a href="{{ url_for('main.index') }}"><button class="btn btn-primary">Set Password</button></a> |
|
|
|
|
<a href="{{ url_for('auth.user_hash_login', auth_hash=user.auth_hash, login='true') }}"><button class="btn btn-primary">Start Playing!</button></a> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-xs-0 col-md-1"></div> |
|
|
|
|
</div> |
|
|
|
|
{% endblock %} |
|
|
|
|