ayb 0.1.12

ayb makes it easy to create, host, and share embedded databases like SQLite and DuckDB
Documentation
{% extends "base_auth.html" %}

{% block title %}Check email{% endblock %}

{% block other_action %}
<a href="/register" class="text-sm">Create account</a>
{% endblock %}

{% block auth_content %}
<div class="uk-alert" data-uk-alert>
  <div class="uk-alert-title">Check email</div>
  <p>
    Please check your email for a confirmation link.
  </p>
</div>
{% if next %}
<!-- Tera's HTML auto-escaping converts / to &#x2F; in template output.
     Browsers don't decode HTML entities inside <script> tags, so we store
     the value in a data attribute on a hidden div (where entities are decoded)
     and read it via JavaScript. -->
<div id="login-next" data-next="{{ next }}" hidden></div>
<script>
    var el = document.getElementById('login-next');
    if (el) { localStorage.setItem('ayb_login_next', el.getAttribute('data-next')); }
</script>
{% endif %}
{% endblock %}