You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
684 B
HTML
18 lines
684 B
HTML
1 year ago
|
{% extends 'base.html' %}
|
||
|
{% block content %}
|
||
|
<div class="container mt-5">
|
||
|
<div class="row justify-content-center">
|
||
|
<div class="col-md-6">
|
||
|
<h2>Upload Public Key</h2>
|
||
|
<form method="post" class="mt-3">
|
||
|
{% csrf_token %}
|
||
|
<div class="form-group">
|
||
|
<label for="public_key">Paste your public key here:</label>
|
||
|
<textarea id="public_key" name="public_key" class="form-control" rows="6" required></textarea>
|
||
|
</div>
|
||
|
<button type="submit" class="btn btn-primary">Upload Public Key</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|