Changeset 20
- Timestamp:
- 01/05/07 21:49:19 (5 years ago)
- Files:
-
- trunk/djangoid/templates/users/accept_root.html (modified) (2 diffs)
- trunk/djangoid/templates/users/login.html (modified) (2 diffs)
- trunk/djangoid/templates/users/userpage.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/djangoid/templates/users/accept_root.html
r7 r20 1 <html> 2 <head> 3 </head> 4 <body> 5 We got a request from {{ openid_request.trust_root }} to authenticate you as {{ openid_request.identity }}.<br /> 6 If you accept this, you will be redirected to {{ openid_request.return_to }}.<br /> 7 If you press cancel, you will be returned to {{ openid_request.getCancelURL }}.<br /> 1 {% extends "base.html" %} 2 {% block "title" %}Accept authentication request{% endblock %} 3 {% block "body" %} 4 We got a request from {{ openid_request.trust_root|escape }} to authenticate you as {{ openid_request.identity|escape }}.<br /> 5 If you accept this, you will be redirected to {{ openid_request.return_to|escape }}.<br /> 6 If you press cancel, you will be returned to {{ openid_request.getCancelURL|escape }}.<br /> 8 7 9 <form method=" POST">8 <form method="post" action="."> 10 9 {% if openid_request.trustRootValid %} 11 10 <input type="checkbox" name="remember" checked="yes" value="yes" /> Remember … … 14 13 <input type="submit" name="cancel" value="Cancel" /> 15 14 </form> 16 </body> 17 </html> 15 {% endblock %} trunk/djangoid/templates/users/login.html
r12 r20 1 <html> 2 <body> 1 {% extends "base.html" %} 2 {% block "title" %}Login{% endblock %} 3 {% block "body" %} 3 4 {% if error_message %} 4 5 <p>{{ error_message }}</p> … … 35 36 document.getElementById('trust_root').innerHTML = unescape(gup("tr")); 36 37 </script> 37 </div> 38 </body> 39 </html> 38 {% endblock %} trunk/djangoid/templates/users/userpage.html
r19 r20 1 <html> 2 <head> 1 {% extends "base.html" %} 2 {% block "title" %}User page of {{ user.get_name }}{% endblock %} 3 {% block "extrahead" %} 3 4 <link rel="openid.server" href="{{ server_url }}" /> 4 5 <link rel="openid.delegate" href="{{ user.get_user_page }}/" /> 5 6 <meta http-equiv="x-xrds-location" content="{{ user.get_yadis_uri }}" /> 6 7 <meta name="microid" content="{{ microid }}" /> 7 </head> 8 <body> 8 {% endblock %} 9 {% block "body" %} 9 10 <h1>User page of {{ user.get_name }}</h1> 10 11 <h2>About {{ user.get_name }}</h2> … … 50 51 </tbody> 51 52 </table> 52 </body> 53 </html> 54 53 {% endblock %}
