Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
b23f46a6
Commit
b23f46a6
authored
Jul 01, 2013
by
Serge S. Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed auth examples. Resolves #251
parent
bdb0f8a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
form.html
examples/auth-mongoengine/templates/form.html
+1
-1
form.html
examples/auth/templates/form.html
+1
-1
No files found.
examples/auth-mongoengine/templates/form.html
View file @
b23f46a6
<html>
<body>
<form
method=
"POST"
action=
""
>
{{ form.hidden_tag() }}
{{ form.hidden_tag()
if form.hidden_tag
}}
{% for f in form if f.type != 'CSRFTokenField' %}
<div>
{{ f.label }}
...
...
examples/auth/templates/form.html
View file @
b23f46a6
<html>
<body>
<form
method=
"POST"
action=
""
>
{{ form.hidden_tag() }}
{{ form.hidden_tag()
if form.hidden_tag
}}
{% for f in form if f.type != 'CSRFTokenField' %}
<div>
{{ f.label }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment