summaryrefslogtreecommitdiffstats
path: root/src/Pages/Shared/_Layout.cshtml
diff options
context:
space:
mode:
authorivar <i@oiee.no>2025-10-19 23:41:23 +0200
committerivar <i@oiee.no>2025-10-19 23:41:23 +0200
commit3f4c0720e1e3421431e7baa20882a4a4512a7fab (patch)
tree734ca81d7d0841d8863e3f523ebba14c282dc681 /src/Pages/Shared/_Layout.cshtml
downloadfagprove-3f4c0720e1e3421431e7baa20882a4a4512a7fab.tar.xz
fagprove-3f4c0720e1e3421431e7baa20882a4a4512a7fab.zip
InitialHEADmaster
Diffstat (limited to 'src/Pages/Shared/_Layout.cshtml')
-rw-r--r--src/Pages/Shared/_Layout.cshtml59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/Pages/Shared/_Layout.cshtml b/src/Pages/Shared/_Layout.cshtml
new file mode 100644
index 0000000..e59dedd
--- /dev/null
+++ b/src/Pages/Shared/_Layout.cshtml
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<html lang="no">
+<head>
+ <meta charset="utf-8" />
+ <meta content="width=device-width, initial-scale=1.0"
+ name="viewport" />
+ <partial name="_Stylesheets" />
+ @RenderSection("Head", required: false)
+ <title>@ViewData["Title"] - Reservasjonstjeneste</title>
+</head>
+<body class="pusher pusable">
+<partial name="_Sidebar" />
+<partial name="_TopNavbar" />
+<main class="pusher main-content">
+ @RenderBody()
+</main>
+<aside class="ui small modal"
+ id="profile-settings-modal">
+ <div class="content">
+ <form class="ui form"
+ id="edit-profile-form"
+ onsubmit="return false">
+ <div class="field">
+ <label for="password">Nytt passord</label>
+ <div class="ui left icon input">
+ <i class="lock icon"></i>
+ <input autocomplete="new-password"
+ id="password"
+ minlength="6"
+ name="password"
+ placeholder="Passord"
+ required
+ type="password">
+ </div>
+ </div>
+ <div class="field">
+ <label for="password-again">Gjenta passord</label>
+ <div class="ui left icon input">
+ <i class="lock icon"></i>
+ <input autocomplete="new-password"
+ id="password-again"
+ minlength="6"
+ name="password-again"
+ placeholder="Gjenta passord"
+ required
+ type="password">
+ </div>
+ </div>
+ <div class="field">
+ <button class="ui positive button">Lagre</button>
+ </div>
+ </form>
+ </div>
+</aside>
+<partial name="_Templates" />
+<partial name="_Scripts" />
+@RenderSection("Scripts", required: false)
+</body>
+</html>