aboutsummaryrefslogtreecommitdiff
path: root/templates/unauthorized.tmpl
blob: 8d18de170aee7571ba98d3118b3df5f92e20a6e3 (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
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>CSH Vote</title>
    <!-- <link rel="stylesheet" href="https://themeswitcher.csh.rit.edu/api/get" /> -->
    <link
      rel="stylesheet"
      href="https://assets.csh.rit.edu/csh-material-bootstrap/4.3.1/dist/csh-material-bootstrap.min.css"
      media="screen"
    />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <style>
      #lockdown {
        width: 20%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }
    </style>
  </head>
  <body>
    <nav class="navbar navbar-expand-lg navbar-dark bg-primary">
      <div class="container">
        <a class="navbar-brand" href="/">Vote</a>
        <div class="nav navbar-nav ml-auto">
          <div class="navbar-user">
            <img src="https://profiles.csh.rit.edu/image/{{ .Username }}" />
            <span class="text-light">{{ .FullName }}</span>
            <a href="/auth/logout" style="color: #c3c3c3;"><i>(logout)</i></a>
          </div>
        </div>
      </div>
    </nav>

    <div
      style="text-align: center; font-size: 1.2rem"
      class="main p-5 error-page align-center"
    >
      <img id="lockdown" src="/static/material_lock.svg" alt="Attention!" />
      <br />
      <h2>You're not authorized to vote!</h2>
      <p>
        It looks like you're either not marked as active, or you're on co-op
        right now
      </p>
      <p>
        If you think this is in error, try logging out and in again. If that doesn't work,
        please contact the Evaluations director or an RTP
      </p>
    </div>
  </body>
</html>