blob: 00129c282c785fd54e6775bec38c648ef046ac5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{% extends "user.html" %}
<!-- user_preferences.html -->
{% load i18n %}
{% load extra_tags %}
{% load humanize %}
{% block usercontent %}
<div style="padding:5px;">
<fieldset>
<legend><b>{% trans "Connect with Twitter" %}</b></legend>
<!-- todo: form action needs to be fixed -->
<form name="twittersync" action="/sdfgsdlgjkhsdfljh">
<label for="name">{% trans "Twitter account name:" %}</label>
<input id="name" /><br/>
<label for="password">{% trans "Twitter password:" %}</label>
<input id="password" type="password"/><br/>
<input id="cbMessage" type="checkbox" />{% trans "Send my Questions to Twitter" %}<br/>
<input id="cbReply" type="checkbox" />{% trans "Send my Answers to Twitter" %}<br/>
<input type="submit" value="{% trans "Save" %}" />
</form>
</fieldset>
</div>
{% endblock %}
<!-- end user_preferences.html -->
|