Commit b23f46a6 authored by Serge S. Koval's avatar Serge S. Koval

Fixed auth examples. Resolves #251

parent bdb0f8a6
<html> <html>
<body> <body>
<form method="POST" action=""> <form method="POST" action="">
{{ form.hidden_tag() }} {{ form.hidden_tag() if form.hidden_tag }}
{% for f in form if f.type != 'CSRFTokenField' %} {% for f in form if f.type != 'CSRFTokenField' %}
<div> <div>
{{ f.label }} {{ f.label }}
......
<html> <html>
<body> <body>
<form method="POST" action=""> <form method="POST" action="">
{{ form.hidden_tag() }} {{ form.hidden_tag() if form.hidden_tag }}
{% for f in form if f.type != 'CSRFTokenField' %} {% for f in form if f.type != 'CSRFTokenField' %}
<div> <div>
{{ f.label }} {{ f.label }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment