summaryrefslogtreecommitdiffstats
path: root/src/Pages/Shared/_Layout.cshtml
blob: e59deddec6be69950f5e015f752d0461e98799c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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>