diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-11 21:20:09 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-11 21:20:09 -0700 |
commit | 3e0097143df7e062e8bd5ede7462675f9eef1cb0 (patch) | |
tree | 77ffb91a242521e77ffc5697718e220a34f4f479 | |
parent | 9b18e10a4e4ec4baa33097ed4c90a233094ce86c (diff) | |
download | DotNetOpenAuth-3e0097143df7e062e8bd5ede7462675f9eef1cb0.zip DotNetOpenAuth-3e0097143df7e062e8bd5ede7462675f9eef1cb0.tar.gz DotNetOpenAuth-3e0097143df7e062e8bd5ede7462675f9eef1cb0.tar.bz2 |
Added a link to the popup login sample to the home page of the RP MVC sample.
Removed claimid.com from the list of Providers in the popup login sample.
-rw-r--r-- | samples/RelyingPartyMvc/Views/Home/Index.aspx | 1 | ||||
-rw-r--r-- | samples/RelyingPartyMvc/Views/User/LoginPopup.aspx | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/samples/RelyingPartyMvc/Views/Home/Index.aspx b/samples/RelyingPartyMvc/Views/Home/Index.aspx index 0cd7595..82eb924 100644 --- a/samples/RelyingPartyMvc/Views/Home/Index.aspx +++ b/samples/RelyingPartyMvc/Views/Home/Index.aspx @@ -11,5 +11,6 @@ <p>Visit the <%=Html.ActionLink("Members Only", "Index", "User") %> area to trigger a login. </p> + <p>Optionally, you can try out the <%=Html.ActionLink("JQuery login popup UX", "LoginPopup", "User")%>. </p> <% } %> </asp:Content> diff --git a/samples/RelyingPartyMvc/Views/User/LoginPopup.aspx b/samples/RelyingPartyMvc/Views/User/LoginPopup.aspx index 3813767..67006fa 100644 --- a/samples/RelyingPartyMvc/Views/User/LoginPopup.aspx +++ b/samples/RelyingPartyMvc/Views/User/LoginPopup.aspx @@ -185,7 +185,6 @@ <div class="provider" onclick="document.selectProvider(this, 'http://{username}.blogspot.com/')"><div><img src="http://blogspot.com/favicon.ico"/></div></div> <div class="provider" onclick="document.selectProvider(this, 'https://myvidoop.com/')"><div><img src="http://www.myvidoop.com/favicon.ico"/></div></div> <div class="provider" onclick="document.selectProvider(this, 'https://pip.verisignlabs.com/')"><div><img src="http://pip.verisignlabs.com/favicon.ico"/></div></div> - <div class="provider" onclick="document.selectProvider(this, 'https://openid.claimid.com/{username}')"><div><img src="http://claimid.com/favicon.ico"/></div></div> </div> <% Html.BeginForm("Authenticate", "User", FormMethod.Post, new { id = "loginForm" }); %> <div class="inputbox"> |