aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/switch_user_page.html
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2019-11-15 23:51:42 +0000
committerrubenwardy <rw@rubenwardy.com>2019-11-15 23:51:42 +0000
commit64f131ae27a7332245b5a4eb8e1e4879d7d99578 (patch)
treea0b4101ca9c2132a072f1586c0df693583c91cf7 /app/templates/admin/switch_user_page.html
parent015abe5a2507ad02273bc89953016c386aae4457 (diff)
downloadcheatdb-64f131ae27a7332245b5a4eb8e1e4879d7d99578.tar.xz
Refactor endpoints to use blueprints instead
Diffstat (limited to 'app/templates/admin/switch_user_page.html')
-rw-r--r--app/templates/admin/switch_user_page.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/templates/admin/switch_user_page.html b/app/templates/admin/switch_user_page.html
deleted file mode 100644
index 7d4a4a2..0000000
--- a/app/templates/admin/switch_user_page.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}
- Switch User
-{% endblock %}
-
-{% block content %}
- <h2>Log in as another user</h2>
-
- {% from "macros/forms.html" import render_field, render_submit_field %}
- <form method="POST" action="">
- {{ form.hidden_tag() }}
-
- {{ render_field(form.username) }}
- {{ render_submit_field(form.submit) }}
- </form>
-{% endblock %}