mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
24 lines
448 B
Plaintext
24 lines
448 B
Plaintext
@{
|
|
ViewData["Title"] = "Account";
|
|
Layout = "/Pages/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
<h3>Manage your account</h3>
|
|
|
|
<div>
|
|
<h5>Change your account settings</h5>
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<partial name="_ManageNav" />
|
|
</div>
|
|
<div class="col-md-9">
|
|
@RenderBody()
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
@RenderSection("Scripts", required: false)
|
|
}
|