summaryrefslogtreecommitdiffstats
path: root/templates/user_preferences.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-26 22:33:56 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-26 22:33:56 -0400
commitfaf167aed99ac4e28927f729b7c7bc94a47ef139 (patch)
treedb94fc2e3af7c23fdced6b48768283b9ca8f1019 /templates/user_preferences.html
parenta7a5d993c680a2fa2a541951d99742090a716807 (diff)
downloadaskbot-faf167aed99ac4e28927f729b7c7bc94a47ef139.tar.gz
askbot-faf167aed99ac4e28927f729b7c7bc94a47ef139.tar.bz2
askbot-faf167aed99ac4e28927f729b7c7bc94a47ef139.zip
merged in latest Mikes changes
Diffstat (limited to 'templates/user_preferences.html')
-rw-r--r--templates/user_preferences.html15
1 files changed, 12 insertions, 3 deletions
diff --git a/templates/user_preferences.html b/templates/user_preferences.html
index 246a834e..3a760a25 100644
--- a/templates/user_preferences.html
+++ b/templates/user_preferences.html
@@ -1,11 +1,20 @@
-<!-- user_preferences.html -->
{% extends "user.html" %}
{% load extra_tags %}
{% load humanize %}
{% block usercontent %}
<div style="padding:5px;">
- <h1>Surprise will be here soon ;-)</h1>
+ <fieldset>
+ <legend><b>同步Twitter消息</b></legend>
+ <form>
+ <label for="name">账号:</label>
+ <input id="name" /><br>
+ <label for="password">密码:</label>
+ <input id="password" type="password"/><br>
+ <input id="cbMessage" type="checkbox" />发布我的提问到我的Twitter<br>
+ <input id="cbReply" type="checkbox" />发布我的回答到我的Twitter<br>
+ <input type="submit" value="保存" />
+ </form>
+ </fieldset>
</div>
{% endblock %}
-<!-- end user_preferences.html -->