Flask-Security
認証に拡張機能を使用した人はいますか? 登録ビューを機能させるにはどうすればよいですか?
http://packages.python.org/Flask-Security/customizing.html
上記のリンクを参照しています。
@app.route('/register', methods=['GET'])
def register():
return render_template('security/register_user.html')
デフォルトのクラスを拡張したくありません。サイトのレイアウトでデフォルトの登録ビューをラップしたいだけなので、これを行いました。
{% extends "layout.html" %}
{% block title %}upload{% endblock %}
{% block body %}
{% from "security/_macros.html" import render_field_with_errors, render_field %}
{% include "security/_messages.html" %}
<h1>Register</h1>
<form action="{{ url_for_security('register') }}" method="POST" name="register_user_form">
{{ register_user_form.hidden_tag() }}
{{ render_field_with_errors(register_user_form.email) }}
{{ render_field_with_errors(register_user_form.password) }}
{% if register_user_form.password_confirm %}
{{ render_field_with_errors(register_user_form.password_confirm) }}
{% endif %}
{{ render_field(register_user_form.submit) }}
</form>
{% include "security/_menu.html" %}
{% endblock %}
次のエラーが表示されますか?
werkzeug.routing.BuildError
BuildError: ('security.register', {}, None)