blob: cd4e77dc3d31ff28de291b31028a95dcb612cbd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% load i18n %}
{% load extra_tags %}
<fieldset>
<table>
<tr>
<td><p id="provider_name_slot">{% trans 'Enter your OpenId Url' %}</p></td>
</tr>
<tr>
<td>
<input id="openid_identifier" class="icon_input" name="openid_identifier" type="text"
style="width: 500px; background: url('{% media provider.icon %}') no-repeat left center" />
</td>
<td>
<input type="submit" name="ssignin" value="Login" />
</td>
</tr>
</table>
</fieldset>
|