flask-base/templates/security/confirm_social.html
2018-03-31 18:26:40 +02:00

16 lines
621 B
HTML

{% extends "base.html" %}
{% set page_title = 'Registration' %}
{% from "_formhelpers.html" import render_field, render_submit %}
{% block content %}
<form action="{{ url_for('friends.confirm_social') }}" method="POST" class="form-horizontal col-md-6 col-md-offset-3">
{{ form.hidden_tag() }}
<div class="col-xs-9 col-xs-offset-3">
<span class="help-block">You will be registered as <strong>{{ session['failed_login_connection']['full_name'] }}</strong>.</span>
<span class="help-block">Please confirm your address.</span>
</div>
{{ render_field(form.email) }}
{{ render_submit() }}
</form>
{% endblock %}