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
589 B

  1. {% extends "base.html" %}
  2. {% block title %}Flasky - Confirm your account{% endblock %}
  3. {% block page_content %}
  4. <div class="page-header">
  5. <h1>
  6. Hello, {{ current_user.username }}!
  7. </h1>
  8. <h3>You have not confirmed your account yet.</h3>
  9. <p>
  10. Before you can access this site you need to confirm your account.
  11. Check your inbox, you should have received an email with a confirmation link.
  12. </p>
  13. <p>
  14. Need another confirmation email?
  15. <a href="{{ url_for('auth.resend_confirmation') }}">Click here</a>
  16. </p>
  17. </div>
  18. {% endblock %}