27 lines
432 B
Plaintext

@model PartyInvites.Models.GuestResponse
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>Thanks</title>
</head>
<body>
<div>
<h1>Thank you, @Model.Name</h1>
@if (Model.WillAttend == true)
{
@:It's great that you're coming. The drinks are already in the fridge
}
else
{
@:Sorry to hear that you can't make it, but thanks for letting us know
}
</div>
</body>
</html>