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