add_public_key.html 534 B

123456789101112131415
  1. <div>
  2. <br>
  3. <form method="post" action="." enctype="multipart/form-data">
  4. {% csrf_token %}
  5. <div>
  6. <label for="public_key">
  7. 添加公钥
  8. </label>
  9. <input type="text" id="public_key" name="public_key">
  10. </div>
  11. <button type="submit">
  12. 提交
  13. </button>
  14. </form>
  15. </div>