16 lines
504 B
HTML
16 lines
504 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block header %}
|
||
|
<h1>{% block title %}New Public Key{% endblock %}</h1>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form method="post">
|
||
|
<label for="key_name">Key Identifier</label>
|
||
|
<input name="key_name" id="key_name" value="{{ request.form['key_name'] }}">
|
||
|
<label for="ssh_pubkey">SSH-Pubkey</label>
|
||
|
<textarea name="ssh_pubkey" id="ssh_pubkey" required>{{ request.form['ssh_pubkey'] }}</textarea>
|
||
|
<input type="submit" value="Save">
|
||
|
</form>
|
||
|
{% endblock %}
|