Django - Security Best Practices
Identify the error in this Django template snippet that causes CSRF protection to fail:
<form method='post'>
<input type='hidden' name='csrfmiddlewaretoken' value='{{ csrf_token }}'>
<button type='submit'>Send</button>
</form>