23 lines
633 B
HTML
23 lines
633 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="anatomy">
|
|
|
|
|
|
<h2>CIMAR login</h2>
|
|
Login status: {{ login_status }} ({{cimar_sid}})<br/>
|
|
|
|
Logging in here allows your account to be linked with CIMAR. You may periodically need to re-login to keep the link active.
|
|
<form method="POST" class="post-form">
|
|
Username: <input type="text" id="username" name="username" value=""/> <br/>
|
|
Password: <input type="password" id="password" name="password" value=""/> <br/>
|
|
<button hx-post='{% url "cimar_login" %}'
|
|
hx-target="#results">Login</button>
|
|
</form>
|
|
|
|
<div id="results"></div>
|
|
|
|
|
|
|
|
</div>
|
|
{% endblock %} |