Roxie Gibson
93d64fe5fb
All checks were successful
continuous-integration/drone/push Build is passing
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% include 'nav.html' %}
|
|
<!-- <div class="logo">
|
|
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
|
|
</div> -->
|
|
<div class="center-table">
|
|
|
|
<div class="signup-form-box">
|
|
<div class="form-header">
|
|
<div id="formlogo" class="logo">
|
|
<img src="{{ url_for('static', path='svg/lumbung_space_logo.svg') }}" alt="lumbung.space logo">
|
|
</div>
|
|
</div>
|
|
<div class="form-body">
|
|
<p>
|
|
Hello {{user.preferred_username}}. Here are links you can send to invite others to register.
|
|
</p>
|
|
{% if user.preferred_username in invites and invites[user.preferred_username]|length > 0 %}
|
|
<table>
|
|
<tr>
|
|
<th>Link</th>
|
|
<th>Validity</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
{% for invite in invites[user.preferred_username] %}
|
|
<tr>
|
|
<td>
|
|
<a class="invite" href="{{ url_for('register_invite', invite=invite.link) }}">
|
|
{{ url_for('register_invite', invite=invite.link) }}
|
|
</a>
|
|
</td>
|
|
<td> {{ invite.validity }} </td>
|
|
<td> <button class="button is-ghost"><a href="{{ url_for('invite_keycloak_delete') }}?invite={{ invite.link }}">delete</a></button></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
<div class="overflow-x:auto">
|
|
|
|
</div>
|
|
{% endif %}
|
|
<button class="button is-ghost"><a href="{{ url_for('invite_keycloak_create') }}">Generate</a></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|