forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-02 20:53:59 -06:00
parent 79e2464196
commit 32bc78cfc3
1 changed files with 13 additions and 11 deletions

View File

@ -4,17 +4,6 @@
{% block content %}
<script>
window.addEventListener("load",function(event) {
document.getElementById('new_email').addEventListener('input', function () {
document.getElementById("email-password").classList.remove("hidden");
document.getElementById("email-password-label").classList.remove("hidden");
document.getElementById("emailpasswordRequired").classList.remove("hidden");
});
});
const twoStepModal = new bootstrap.Modal(document.getElementById('2faModal'))
</script>
<div class="row">
<div class="col col-lg-8">
@ -272,3 +261,16 @@
</div>
{% endblock %}
{% block scripts %}
<script>
window.addEventListener("load",function(event) {
document.getElementById('new_email').addEventListener('input', function () {
document.getElementById("email-password").classList.remove("hidden");
document.getElementById("email-password-label").classList.remove("hidden");
document.getElementById("emailpasswordRequired").classList.remove("hidden");
});
});
const twoStepModal = new bootstrap.Modal(document.getElementById('2faModal'))
</script>
{% endblock %}