aboutsummaryrefslogtreecommitdiff
path: root/src/views/logout-page.ecr
blob: 61fa5056a05faad5e96c59dc88012ca927aff9fd (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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang='en-US'>
  <head>
    <meta charset="utf-8"/>
    <title>Guff Logout</title>

    <%=
      styles %w{
        assets/font-awesome-4.5.0/css/font-awesome.min.css
        assets/bootstrap-3.3.6/css/bootstrap.min.css
        assets/bootstrap-3.3.6/css/bootstrap-theme.min.css
      }
    %>
  </head>

  <body>
    <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-exit'></i>
              Guff Logout
            </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 %w{
      assets/jquery-2.2.1.min.js
      assets/bootstrap-3.3.6/js/bootstrap.min.js
    }
  %>
</html>