3b978b781f
.. using server-side API tokens
107 lines
3.9 KiB
HTML
107 lines
3.9 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}SSH & API Keys{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row third-margin">
|
|
<h1>SSH PUBLIC KEYS</h1>
|
|
</div>
|
|
<div class="row third-margin"><div>
|
|
{% if ssh_public_keys|length > 0 %} <hr/> {% endif %}
|
|
|
|
{% for ssh_public_key in ssh_public_keys %}
|
|
<form method="post">
|
|
<input type="hidden" name="method" value="DELETE"></input>
|
|
<input type="hidden" name="action" value="delete_ssh_key"></input>
|
|
<input type="hidden" name="name" value="{{ ssh_public_key['name'] }}"></input>
|
|
<input type="hidden" name="csrf-token" value="{{ csrf_token }}"/>
|
|
<div class="row">
|
|
<span class="code">{{ ssh_public_key['name'] }}</span>
|
|
<span class="dim">{{ ssh_public_key['content'] }}</span>
|
|
<input type="submit" value="Delete">
|
|
</div>
|
|
</form>
|
|
{% endfor %}
|
|
|
|
{% if ssh_public_keys|length > 0 %} <hr/> {% endif %}
|
|
|
|
<div class="third-margin">
|
|
<h1>UPLOAD A NEW SSH PUBLIC KEY</h1>
|
|
</div>
|
|
<form method="post">
|
|
<input type="hidden" name="method" value="POST"></input>
|
|
<input type="hidden" name="action" value="upload_ssh_key"></input>
|
|
<input type="hidden" name="csrf-token" value="{{ csrf_token }}"/>
|
|
<div class="row justify-start">
|
|
<label class="align" for="content">File Contents</label>
|
|
<textarea class="expand" id="content" name="content"></textarea>
|
|
</div>
|
|
<div class="row justify-start">
|
|
<label class="align" for="name">Key Name</label>
|
|
<input type="text" id="name" name="name"></input> (defaults to key comment)
|
|
</div>
|
|
<div class="smalltext">
|
|
<p>Paste the contents of your SSH public key file here.
|
|
( Something like <span class='code'>~/.ssh/id_rsa.pub</span> )
|
|
</p><p>
|
|
The contents of this file should look similar to
|
|
<span class='code'>ssh-rsa AAAAC3NzaC1l...Yqv== me@my-computer</span>
|
|
</p><p>
|
|
If you wish, you can <a href="https://git-scm.com/book/en/v2/Git-on-the-Server-Generating-Your-SSH-Public-Key">
|
|
generate a new SSH key pair using the ssh-keygen utility</a>.
|
|
</p>
|
|
</div>
|
|
<div class="row justify-end">
|
|
<input type="submit" value="Upload">
|
|
</div>
|
|
</form>
|
|
</div></div>
|
|
<hr/>
|
|
<div class="row third-margin">
|
|
<h1>API KEYS</h1>
|
|
</div>
|
|
<div class="row third-margin"><div>
|
|
{% if generated_api_token %}
|
|
<hr/>
|
|
Generated key:
|
|
<span class="code">{{ generated_api_token }}</span>
|
|
{% endif %}
|
|
{% if api_tokens|length >0 %} <hr/>{% endif %}
|
|
{% for api_token in api_tokens %}
|
|
<form method="post">
|
|
<input type="hidden" name="method" value="DELETE"></input>
|
|
<input type="hidden" name="action" value="delete_api_token"></input>
|
|
<input type="hidden" name="id" value="{{ api_token['id'] }}"></input>
|
|
<input type="hidden" name="csrf-token" value="{{ csrf_token }}"/>
|
|
<div class="row">
|
|
<span class="code">{{ api_token['name'] }}</span>
|
|
created {{ api_token['created'].strftime("%b %d %Y") }}
|
|
<input type="submit" value="Delete">
|
|
</div>
|
|
</form>
|
|
{% endfor %}
|
|
{% if api_tokens|length >0 %} <hr/>{% endif %}
|
|
|
|
<div class="third-margin">
|
|
<h1>GENERATE A NEW API KEY</h1>
|
|
</div>
|
|
<form method="post">
|
|
<input type="hidden" name="method" value="POST"></input>
|
|
<input type="hidden" name="action" value="generate_api_token"></input>
|
|
<input type="hidden" name="csrf-token" value="{{ csrf_token }}"/>
|
|
<div class="smalltext">
|
|
<p>Generate a new API key, to integrate with other systems.</p>
|
|
</div>
|
|
<div class="row justify-start">
|
|
<label class="align" for="name">Key Name</label>
|
|
<input type="text" id="name" name="name"></input> (defaults to creation time)
|
|
</div>
|
|
<div class="row justify-end">
|
|
<input type="submit" value="Generate">
|
|
</div>
|
|
</form>
|
|
</div></div>
|
|
{% endblock %}
|
|
|
|
{% block pagesource %}/templates/ssh-public-keys.html{% endblock %}
|