return View();
}
- public ActionResult About()
- {
- ViewBag.Message = "Your application description page.";
-
- return View();
- }
-
public ActionResult Contact()
{
ViewBag.Message = "Your contact page.";
<Content Include="Views\_ViewStart.cshtml" />
<Content Include="Views\Shared\Error.cshtml" />
<Content Include="Views\Shared\_Layout.cshtml" />
- <Content Include="Views\Home\About.cshtml" />
<Content Include="Views\Home\Contact.cshtml" />
<Content Include="Views\Home\Index.cshtml" />
<Content Include="Views\Account\_ExternalLoginsListPartial.cshtml" />
+++ /dev/null
-@{
- ViewBag.Title = "About";
-}
-<h2>@ViewBag.Title.</h2>
-<h3>@ViewBag.Message</h3>
-
-<p>Use this area to provide additional information.</p>
@{
- ViewBag.Title = "Contact";
+ ViewBag.Title = "Kontakt";
}
<h2>@ViewBag.Title.</h2>
-<h3>@ViewBag.Message</h3>
+<h3>Skontaktuj się ze mną!</h3>
-<address>
- One Microsoft Way<br />
- Redmond, WA 98052-6399<br />
- <abbr title="Phone">P:</abbr>
- 425.555.0100
-</address>
+<form>
+ <address>
+ <strong>Email:</strong> <a href="mailto:kontakt@dlugolecki.net.pl">kontakt@dlugolecki.net.pl</a>
+ </address>
-<address>
- <strong>Support:</strong> <a href="mailto:Support@example.com">Support@example.com</a><br />
- <strong>Marketing:</strong> <a href="mailto:Marketing@example.com">Marketing@example.com</a>
-</address>
\ No newline at end of file
+ <address>
+ Rafał Długołęcki<br />
+ ABCDEFGHIJ 1/2<br />
+ Warszawa
+ </address>
+
+ <div class="form-horizontal">
+ <div class="form-group">
+ <label class="control-label col-md-2" for="email">Twój adres email</label>
+ <div class="col-md-10">
+ <input class="form-control text-box single-line" id="email" name="email" type="email" value="" />
+ </div>
+ </div>
+ <div class="form-group">
+ <label class="control-label col-md-2" for="message">Wiadomość</label>
+ <div class="col-md-10">
+ <textarea class="form-control text-box multi-line" id="message" name="message"></textarea>
+ </div>
+ </div>
+
+ <div class="form-group">
+ <div class="col-md-offset-2 col-md-10">
+ <input type="submit" value="Wyślij" class="btn btn-default" />
+ </div>
+ </div>
+
+ </div>
+</form>
\ No newline at end of file
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>@ViewBag.Title - My ASP.NET Application</title>
+ <title>@ViewBag.Title - Projects by Rafał Długołęcki</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
- @Html.ActionLink("Application name", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
+ @Html.ActionLink("Projects", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
- <li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
<li>@Html.ActionLink("List of Projects", "Index", "Projects")</li>
<li>@Html.ActionLink("List of Tasks", "Index", "ProjectTasks")</li>
@RenderBody()
<hr />
<footer>
- <p>© @DateTime.Now.Year - My ASP.NET Application</p>
+ <p>© @DateTime.Now.Year - Rafał Długołęcki</p>
</footer>
</div>