mirror of
https://github.com/rudollee/LearningMVC.git
synced 2026-08-19 04:13:06 +00:00
Primitive Commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link href="~/Content/bootstrap.css" rel="stylesheet" />
|
||||
<link href="~/Content/bootstrap-theme.css" rel="stylesheet" />
|
||||
<title>Index</title>
|
||||
<style>
|
||||
.btn a {color: white; text-decoration: none;}
|
||||
body{ background-color: #f1f1f1;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="text-center">
|
||||
@*@ViewBag.Greeting World (from the view)*@
|
||||
<h2>We're going to have an exciting party.<br /></h2>
|
||||
<h3>And you are invited</h3>
|
||||
<div class="btn btn-success">
|
||||
@Html.ActionLink("RSVP Now", "RsvpForm")
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user