* Added base admin login/logout flows * Ignore local database * Channel model * Admin interface for channels and plugins * Added database tests along with workflows * Added some docstrings * Ignore .coverage file * Creating plugins docs WIP * Documentation * Black everything * Some documentation * Coverage for the plugins package as well * DB Fixes * Absolute FROM in Dockerfile * Database and logging fixes * Slack: Support private channels * Added pre-commit * black'd * Fixed UserQuery.create * Fixed ChannelPluginQuery.create exists call * Added ChannelPlugin menu for debugging * Ignore sqlite databases * Updated contributing docs
32 lines
1.1 KiB
Django/Jinja
32 lines
1.1 KiB
Django/Jinja
{% extends "_base.j2" %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
|
|
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Login</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action="" method="post">
|
|
<div class="form-group mb-3 ">
|
|
<label class="form-label">Username</label>
|
|
<div>
|
|
<input type="text" name="username" class="form-control" placeholder="Username">
|
|
</div>
|
|
</div>
|
|
<div class="form-group mb-3 ">
|
|
<label class="form-label">Password</label>
|
|
<div>
|
|
<input type="password" class="form-control" placeholder="Password" name="password">
|
|
</div>
|
|
</div>
|
|
<div class="form-footer">
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|