mirror of
https://github.com/rudollee/LearningMVC.git
synced 2026-08-17 19:33:04 +00:00
Primitive Commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
@model PartyInvites.Models.GuestResponse
|
||||
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<link href="~/Content/bootstrap.css" rel="stylesheet" />
|
||||
<link href="~/Content/bootstrap-theme.css" rel="stylesheet" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>Thanks</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #f1f1f1;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="text-center">
|
||||
<h1>Thank you, @Model.Name!</h1>
|
||||
<div class="lead">
|
||||
@if (Model.WillAttend == true)
|
||||
{
|
||||
@:It's great that you're coming. The drinks are already in the fridge!
|
||||
}
|
||||
else
|
||||
{
|
||||
@:Sorry to hear that you cant't make it, but thanks for letting us know.
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user