29 lines
871 B
Plaintext
29 lines
871 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
|
|
|
|
<title>IdentityServer4</title>
|
|
|
|
<link rel="icon" type="image/x-icon" href="~/favicon.ico" />
|
|
<link rel="shortcut icon" type="image/x-icon" href="~/favicon.ico" />
|
|
|
|
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="~/css/site.css" />
|
|
</head>
|
|
<body>
|
|
<partial name="_Nav" />
|
|
|
|
<div class="container body-container">
|
|
@RenderBody()
|
|
</div>
|
|
|
|
<script src="~/lib/jquery/dist/jquery.slim.min.js"></script>
|
|
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
@RenderSection("scripts", required: false)
|
|
</body>
|
|
</html>
|