Initial commit
This commit is contained in:
15
templates/security/confirm_social.html
Normal file
15
templates/security/confirm_social.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user