sprint/templates/vk_auth.html
Egor Matveev 965463b92e titles
2022-05-12 08:46:40 +03:00

13 lines
299 B
HTML

{% extends 'layouts/base.html' %}
{% block title %}Redirecting{% endblock %}
{% block javascripts %}
<script>
function onLoad() {
window.location.href = window.location.href.replace('#', '?');
}
</script>
{% endblock %}
{% block onload %}onLoad(){% endblock %}