mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
31 lines
660 B
Plaintext
31 lines
660 B
Plaintext
|
|
@{
|
|
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>
|