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 %}Login error{% endblock %}

{% block other_action %}
<a href="/register" class="text-sm">Create account</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>
    You were unable to log in. Please try again.
  </p>
</div>
{% endblock %}