aboutsummaryrefslogtreecommitdiff
path: root/app/templates/admin/switch_user.html
blob: 7d4a4a2ef4695451bae9bf7ae76ca3d6e5395a08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% 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 %}