如何使用Bootstrap设置Flask-security登录站点的样式?html表单如下所示:
Bootstrap已实现,但我不知道如何编辑字段和提交按钮..
的render_field_*
功能接受一个class_
参数,这将HTML类添加到该字段.根据需要添加引导样式类.
render_field_with_errors(login_user_form.email, class_="form-control") }} {{ render_field(login_user_form.submit, class_="btn btn-default") }}
等等.