aboutsummaryrefslogtreecommitdiff
path: root/src/views/pages/logout.ecr
blob: 0891823df434131603bcb491dca4e054e07eac68 (plain)
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
<!DOCTYPE html>
<html lang='en-US'>
  <head>
    <meta charset="utf-8"/>
    <title><%= h(TITLE) %></title>

    <%= styles %>
  </head>

  <body>
    <%= navbar %>

    <div class='container'>
      <div class='col-md-6 col-md-offset-3'>
        <div class='panel panel-default'>
          <div class='panel-heading'>
            <b>
              <i class='fa fa-power-off'></i>
              Log Out
            </b>
          </div><!-- panel-heading -->

          <div class='panel-body'>
            <p>
              You have logged out.
            </p>

            <p>
              <a
                href='login.html'
                title='Go to login page.'
              >Go to Login page</a>
            </p>
          </div><!-- panel-body -->
        </div><!-- panel -->
      </div><!-- col-md-4 -->
    </div><!-- container -->
  </body>

  <%= scripts %>
</html>