mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
28 lines
684 B
Plaintext
28 lines
684 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" />
|
|
<link href="~/Content/ErrorStyles.css" rel="stylesheet" />
|
|
<script src="~/Scripts/jquery-1.10.2.js"></script>
|
|
<script src="~/Scripts/jquery.validate.js"></script>
|
|
<script src="~/Scripts/jquery.validate.unobtrusive.js"></script>
|
|
<title>@ViewBag.Title</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
@if (TempData["message"] != null)
|
|
{
|
|
<div class="alert alert-success">@TempData["message"]</div>
|
|
}
|
|
@RenderBody()
|
|
</div>
|
|
</body>
|
|
</html>
|