A credit page.

* Contact.aspx: a form background color

* Index.aspx: A link to the credits page

* HomeController.cs: A Credits page

* Credits.aspx: A page title and H1 links

* AssemblyInfo.aspx: A relevant title
This commit is contained in:
Paul Schneider 2015-10-08 14:10:45 +02:00
commit c79921ea58
6 changed files with 24 additions and 13 deletions

View file

@ -2,6 +2,8 @@
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
<% using (Html.BeginForm("Contact", "Home")) { %>
<fieldset>
<legend>Message</legend>
<p>
<%= Html.Label("email") %>:
<%= Html.ValidationMessage("email") %><br/>
@ -17,6 +19,7 @@
<%= Html.ValidationMessage("body") %><br/>
<%= Html.TextArea("body") %>
</p>
</fieldset>
<input type="submit">
<% } %>