This commit is contained in:
Ross
2022-04-01 19:12:35 +01:00
parent f7f662ec83
commit 0686bb33e3
4 changed files with 51 additions and 27 deletions
@@ -1,18 +0,0 @@
{% extends 'anatomy/base.html' %}
{% block content %}
<div class="anatomy">
<h2>Please enter your CID</h2>
<p>CID: <input type="text" name="cid" id="cid-input"></p>
<button id="cid-selector-go-button">Go...</button>
</div>
<script>
$(document).ready(function () {
$("#cid-selector-go-button").click(() => {
cid = document.getElementById("cid-input").value;
window.location = window.location + cid;
})
})
</script>
{% endblock %}