You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
962 B
20 lines
962 B
{% extends "base.html" %} |
|
{% import 'bootstrap/wtf.html' as wtf %} |
|
|
|
{% block app_content %} |
|
<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('auth.change_password', auth_hash=user.auth_hash) }}"><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 %}
|
|
|