Author: prabath
Date: Wed Jan  9 11:32:02 2008
New Revision: 12086

Log:

OpenID integration

Modified:
   
trunk/solutions/identity/modules/user-ui/src/main/webapp/jsp/openiduserloggedin.jsp

Modified: 
trunk/solutions/identity/modules/user-ui/src/main/webapp/jsp/openiduserloggedin.jsp
==============================================================================
--- 
trunk/solutions/identity/modules/user-ui/src/main/webapp/jsp/openiduserloggedin.jsp
 (original)
+++ 
trunk/solutions/identity/modules/user-ui/src/main/webapp/jsp/openiduserloggedin.jsp
 Wed Jan  9 11:32:02 2008
@@ -39,12 +39,24 @@
                                <td><%=request.getAttribute("nickname")%></td>
                        </tr>
                        <%}%>
+                       <% if (request.getAttribute("givenname") != null) { %>
+                       <tr>
+                               <td>Given Name:</td>
+                               <td><%=request.getAttribute("givenname")%></td>
+                       </tr>
+                       <%}%>
                        <% if (request.getAttribute("fullname") != null) { %>
                        <tr>
                                <td>Full Name:</td>
                                <td><%=request.getAttribute("fullname")%></td>
                        </tr>
                        <%}%>
+                       <% if (request.getAttribute("surname") != null) { %>
+                       <tr>
+                               <td>Surname:</td>
+                               <td><%=request.getAttribute("surname")%></td>
+                       </tr>
+                       <%}%>
                        <% if (request.getAttribute("email") != null) { %>
                        <tr>
                                <td>Email Address:</td>

_______________________________________________
Identity-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/identity-dev

Reply via email to