rename .html templates to .jinja2 for more consistency

This commit is contained in:
Yusur 2023-03-16 14:17:50 +01:00
parent 7f050afb8b
commit 2887d94a8c
36 changed files with 34 additions and 33 deletions

View file

@ -1,21 +0,0 @@
{% extends "base.html" %}
{% block title %}Circles {{ app_name }}{% endblock %}
{% block content %}
<form method="POST" enctype="multipart/form-data">
<p>Enter the contacts you want to bulk add, in comma-separated values (CSV) format, one by line.<br />Order matters.</p>
<textarea name="text" style="width:100%;height:20em" placeholder="00000,First,Last,Display,Type"></textarea>
<input type="checkbox" disabled="" id="autoConsent" name="consent" value="y" />
<input type="submit" value="Save" />
</form>
<script>
setTimeout(() => {
let ac = document.getElementById("autoConsent");
ac.disabled = false;
ac.selected = false;
}, 10000)
</script>
{% endblock %}