summaryrefslogtreecommitdiff
path: root/quoins/templates/oid_confirm.html
diff options
context:
space:
mode:
Diffstat (limited to 'quoins/templates/oid_confirm.html')
-rw-r--r--quoins/templates/oid_confirm.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/quoins/templates/oid_confirm.html b/quoins/templates/oid_confirm.html
new file mode 100644
index 0000000..4fcf1de
--- /dev/null
+++ b/quoins/templates/oid_confirm.html
@@ -0,0 +1,72 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:xi="http://www.w3.org/2001/XInclude"
5 xmlns:py="http://genshi.edgewall.org/">
6 <xi:include href="master.html" />
7 <xi:include href="blog-master.html" />
8
9 <head>
10 <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
11 <title>${blog.title}</title>
12 </head>
13
14
15 <body>
16 <div id="main">
17 <div id="blog-content">
18
19 <form action="${openid.url('/finish')}" method="post">
20
21 <p>
22 The site <b>${oid_request.trust_root}</b>
23 wants to verify that you are identified by <b>${request.identity['user']}</b>
24 and has requested the following information:
25 </p>
26
27
28 <div py:if="required">
29 <h3> Required information </h3>
30 <ul>
31 <li py:for="field, name, value in required">
32 <label>
33 <input type="checkbox" name="${field}" checked="true" />
34 ${name}: ${value}
35 </label>
36 </li>
37 </ul>
38 </div>
39 <div py:if="optional">
40 <h3> Optional information </h3>
41 <ul>
42 <li py:for="field, name, value in optional">
43 <label>
44 <input type="checkbox" name="${field}" checked="true" />
45 ${name}: ${value}
46 </label>
47 </li>
48 </ul>
49 </div>
50
51 <!--
52 <p>
53 <label>
54 <input type="checkbox" name="remember" />
55 Remember these choices and don't prompt for this site in the future.
56 </label>
57 </p>
58 -->
59
60 <p>
61 <input type="submit" name="continue" value="Continue" />
62 &nbsp;
63 <input type="submit" name="cancel" value="Cancel" />
64 </p>
65
66 </form>
67
68 </div> <!-- blog-content -->
69 </div> <!-- main -->
70
71 </body>
72</html>