striptags for all user-entered strings
[mygpo.git] / mygpo / web / templates / migrate.html
blobed224f97cb649620ae435ae508a58fb1a38a5611
1 {% extends "base.html" %}
2 {% load i18n %}
4 {% block content %}
5 <h1>{{ url }}</h1>
6 <p>{% blocktrans with username|striptags as user_name %}The new {{ url }} uses usernames instead of email addresses. Based on your email address, we think you might like <strong>{{user_name}}</strong>, but you can change that if you want to.{% endblocktrans %}</p>
8 <form action="/migrate/" method="post">
9 Username: <input type="text" name="username" value="{{ username|striptags }}"/><br /><br />
10 <input type="submit" name="submit" value="Submit" />
11 </form>
12 <p>{% trans "You can keep your old user settings in gPodder. Once the next version (with lots of new features) is release, you'll have to replace your email address with your username." %}</p>
13 {% endblock %}