summaryrefslogtreecommitdiffstats
path: root/templates/authopenid/complete.html
diff options
context:
space:
mode:
authorBruno Sarlo <bruno@bruno-laptop.(none)>2009-08-08 21:44:10 -0300
committerBruno Sarlo <bruno@bruno-laptop.(none)>2009-08-08 21:44:10 -0300
commit19fc3609dd964acafd253e0cc59a46b296f17552 (patch)
tree871b0856af5e2dd5b816ee419857a38f80cd6b87 /templates/authopenid/complete.html
parent0b80e6ba3fa528df2fc64a1a2e3a9f58dec39ec5 (diff)
parent84c4766d7ce0ae7a6a93dbe996099a60b30fc9e5 (diff)
downloadaskbot-19fc3609dd964acafd253e0cc59a46b296f17552.tar.gz
askbot-19fc3609dd964acafd253e0cc59a46b296f17552.tar.bz2
askbot-19fc3609dd964acafd253e0cc59a46b296f17552.zip
Merge branch 'master' of git://github.com/evgenyfadeev/CNPROG
* Merge of Spanish translation, still missing some texts. * Custom colors for preguntalo project Conflicts: locale/es/LC_MESSAGES/django.mo locale/es/LC_MESSAGES/django.po templates/content/style/style.css
Diffstat (limited to 'templates/authopenid/complete.html')
-rw-r--r--templates/authopenid/complete.html17
1 files changed, 9 insertions, 8 deletions
diff --git a/templates/authopenid/complete.html b/templates/authopenid/complete.html
index 28c38a04..b9a14e16 100644
--- a/templates/authopenid/complete.html
+++ b/templates/authopenid/complete.html
@@ -1,4 +1,5 @@
-{% extends "base.html" %}
+{% extends "base_content.html" %}
+<!-- complete.html -->
{% load i18n %}
{% block head %}{% endblock %}
{% block title %}{% spaceless %}{% trans "Connect your OpenID with this site" %}{% endspaceless %}{% endblock %}
@@ -7,7 +8,9 @@
{% trans "Connect your OpenID with your account on this site" %}
</div>
<p id="completetxt" >
- <h3>{% trans "Your OpenID is accepted. Please complete this to finish registration." %}</h3>
+ <div class="message">
+ {% blocktrans %}register new {{provider}} account info{% endblocktrans %}
+ </div>
<p style="display:none">{% trans "This account already exists, please use another." %}</p>
</p>
@@ -41,12 +44,9 @@
<div class="login">
<form name="fregister" action="{% url user_register %}" method="POST">
{{ form.next }}
- <fieldset style="padding:10px">
- <legend class="big">{% trans "New account" %}</legend>
- <div class="form-row"><label for="id_username">{% trans "User name (<i>will be shown to others, cannot be modified</i>)" %}</label><br />{{ form1.username }}</div>
- <div class="form-row"><label for="id_email">{% trans "Email (<i>not shared with anyone</i>)" %}</label><br />{{ form1.email }}</div>
- <div class="submit-row"><input type="submit" class="submit" name="bnewaccount" value="{% trans "create account" %}"></div>
- </fieldset>
+ <div class="form-row"><label for="id_username">{% trans "Screen name label" %}</label><br />{{ form1.username }}</div>
+ <div class="form-row"><label for="id_email">{% trans "Email address label" %}</label><br />{{ form1.email }}</div>
+ <div class="submit-row"><input type="submit" class="submit" name="bnewaccount" value="{% trans "create account" %}"></div>
</form>
</div>
<div class="login" style="display:none">
@@ -65,3 +65,4 @@
</form>
</div>
{% endblock %}
+<!-- end complete.html -->