summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--projecttemplates/MvcRelyingParty/Controllers/HomeController.cs2
-rw-r--r--projecttemplates/MvcRelyingParty/Views/Home/Index.aspx16
2 files changed, 11 insertions, 7 deletions
diff --git a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs
index 7182862..0bf7ab3 100644
--- a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs
+++ b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs
@@ -8,7 +8,7 @@
[HandleError]
public class HomeController : Controller {
public ActionResult Index() {
- ViewData["Message"] = "Welcome to ASP.NET MVC!";
+ ViewData["Message"] = "Welcome to ASP.NET MVC with OpenID RP + OAuth SP support!";
return View();
}
diff --git a/projecttemplates/MvcRelyingParty/Views/Home/Index.aspx b/projecttemplates/MvcRelyingParty/Views/Home/Index.aspx
index ddd2ffe..4efd7f6 100644
--- a/projecttemplates/MvcRelyingParty/Views/Home/Index.aspx
+++ b/projecttemplates/MvcRelyingParty/Views/Home/Index.aspx
@@ -1,12 +1,16 @@
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="indexTitle" ContentPlaceHolderID="TitleContent" runat="server">
- Home Page
+ Home Page
</asp:Content>
-
<asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server">
- <h2><%= Html.Encode(ViewData["Message"]) %></h2>
- <p>
- To learn more about ASP.NET MVC visit <a href="http://asp.net/mvc" title="ASP.NET MVC Website">http://asp.net/mvc</a>.
- </p>
+ <h2>
+ <%= Html.Encode(ViewData["Message"]) %></h2>
+ <p>
+ To learn more about DotNetOpenAuth visit <a href="http://www.dotnetopenauth.net/"
+ title="DotNetOpenAuth web site">http://www.dotnetopenauth.net/</a>.
+ </p>
+ <p>
+ Try logging in.
+ </p>
</asp:Content>