ayb 0.1.12

ayb makes it easy to create, host, and share embedded databases like SQLite and DuckDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base_auth.html" %}

{% block title %}Registration error{% endblock %}

{% block other_action %}
<a href="/log_in" class="text-sm">Log in</a>
{% endblock %}

{% block auth_content %}
<div class="uk-alert uk-alert-destructive" data-uk-alert>
  <div class="uk-alert-title">Unable to log in</div>
  <p>
    Registration failed. Please try again.
  </p>
</div>
{% endblock %}