diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-03-09 22:24:57 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-03-09 22:24:57 -0800 |
commit | 751c158aeeb9911e09552c549fbda2cd459ac8e3 (patch) | |
tree | ad293708e476a96d30961d0e1c654c18977d5524 | |
parent | e2a47706cc4fb89adc73239899364e520fd27472 (diff) | |
download | DotNetOpenAuth-751c158aeeb9911e09552c549fbda2cd459ac8e3.zip DotNetOpenAuth-751c158aeeb9911e09552c549fbda2cd459ac8e3.tar.gz DotNetOpenAuth-751c158aeeb9911e09552c549fbda2cd459ac8e3.tar.bz2 |
Fixes popup so it doesn't depend on today's relative paths.
-rw-r--r-- | projecttemplates/MvcRelyingParty/Views/Account/LogOnContent.ascx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/projecttemplates/MvcRelyingParty/Views/Account/LogOnContent.ascx b/projecttemplates/MvcRelyingParty/Views/Account/LogOnContent.ascx index 73f80b1..9b4d270 100644 --- a/projecttemplates/MvcRelyingParty/Views/Account/LogOnContent.ascx +++ b/projecttemplates/MvcRelyingParty/Views/Account/LogOnContent.ascx @@ -9,17 +9,17 @@ <div> <ul class="OpenIdProviders"> <li id="https://www.google.com/accounts/o8/id" class="OPButton"><a href="#"><div><div> - <img src="../../Content/images/google.gif" /> + <img src='<%= Url.Content("~/Content/images/google.gif") %>' /> <img src="<%= Page.ClientScript.GetWebResourceUrl(typeof(DotNetOpenAuth.OpenId.RelyingParty.OpenIdSelector), "DotNetOpenAuth.OpenId.RelyingParty.login_success.png") %>" class="loginSuccess" title="Authenticated as {0}" /> </div><div class="ui-widget-overlay"></div></div></a> </li> <li id="https://me.yahoo.com/" class="OPButton"><a href="#"><div><div> - <img src="../../Content/images/yahoo.gif" /> + <img src='<%= Url.Content("~/Content/images/yahoo.gif") %>' /> <img src="<%= Page.ClientScript.GetWebResourceUrl(typeof(DotNetOpenAuth.OpenId.RelyingParty.OpenIdSelector), "DotNetOpenAuth.OpenId.RelyingParty.login_success.png") %>" class="loginSuccess" title="Authenticated as {0}" /> </div><div class="ui-widget-overlay"></div></div></a> </li> <li id="OpenIDButton" class="OpenIDButton"><a href="#"><div><div> - <img src="../../Content/images/openid.gif" /> + <img src='<%= Url.Content("~/Content/images/openid.gif") %>' /> <img src="<%= Page.ClientScript.GetWebResourceUrl(typeof(DotNetOpenAuth.OpenId.RelyingParty.OpenIdSelector), "DotNetOpenAuth.OpenId.RelyingParty.login_success.png") %>" class="loginSuccess" title="Authenticated as {0}" /> </div><div class="ui-widget-overlay"></div></div></a> </li> |