graphene-django/graphene_django/templates/graphene/header_jwt_auth.html

16 lines
328 B
HTML
Executable File

{% extends 'graphene/base.html' %}
{% load static %}
{% block title %}set a JWT token in the headers (HTTP_AUTHORIZATION){% endblock %}
{% block content %}
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit">
</form>
{% endblock %}