Gallery-Archivist/archivist/sites/templates/fa/import.html

18 lines
377 B
HTML
Raw Normal View History

2023-10-21 16:58:29 +00:00
<!-- home.html -->
{% extends "base.html" %}
{% block title %}Import | Furaffinity Archive{% endblock %}
{% block content %}
<div class="row">
<h2>Your att the import screen.</h2>
<form method="post" class="mb-3">
{% csrf_token %}
{{ form.as_p }}
<button class="btn btn-primary" type="submit">Save</button>
</form>
</div>
{% endblock %}