mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
16 lines
731 B
HTML
16 lines
731 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
|
|
<p>{{ _('This interface provides command line access to your account on the server.') }}</p>
|
|
<p>{{ _('You can open a web terminal for yourself or create a temporary account with a one-time login to share with a third party.') }}</p>
|
|
|
|
<div class="flex">
|
|
<form method="POST" action="/terminal/run">
|
|
<a href="/terminal/run" {% if force_domain and force_https %}target="_blank"{% endif %} class="btn btn-primary btn-lg" role="button"><i class="bi bi-terminal"></i> {{ _('Access Web Terminal') }}</a> or <button class="btn btn-outline-primary btn-lg" type="submit"><i class="bi bi-terminal-plus"></i> {{ _('Temporary Share Access') }}</button>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|