aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/banned.html
blob: 9e59699143e62db30b4b979bf952dd48a2c9d7de (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Acceso prohibido@Bienvenido a Internet</title>
  <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <style type="text/css">
    body {background:#1D1F21;font-size:14px;margin:8px;}
    .box {
      display: block;
      max-width: 800px;
      background: #A54242;
      color: #C5C8C6;
      margin: 10% auto;
      padding: 1.5em;
      box-shadow: 5px 10px #732e2e;
      border: 3px double #CCC;
    }
    a, a:visited {color:#5F819D;}
    a:hover,a:active {color:#81A2BE;}
    .title {
      color: white;
      margin-bottom: 28px;
      text-align: center;
      font-family: monospace;
      font-size: 23px;
      font-style: normal;
      font-variant: normal;
      font-weight: 700;
      line-height: 1em;
    }
    .description {
      font-family: monospace;
      font-size: 14px;
      font-style: normal;
      font-variant: normal;
      font-weight: 400;
      line-height: 1.6em;
    }
    ul {padding-left:2em;}
    .thx {margin-bottom:0;text-align:center;}
    @media(max-width:720px){
      body{margin:4px 8px 16px 4px;}
      .box{margin:0;padding:1em;}
      .title{margin-bottom:14px;}
      ul{padding-left:1em;}
    }
  </style>
</head>
<body>
  <div class="box">
    <div class="title">ERROR: Se te ha prohibido el acceso</div>
    <div class="description">Lo sentimos, tu IP (#{ip}) o red están en lista negra.
      <ul>
        <?py if reason: ?>
        <li>La razón fue:
          <b>#{reason}</b>
        </li>
        <?py #endif ?>
        <li>Tu ban fue puesto el
          <b>#{added}</b> para las siguientes secciones: <b>#{boards_str}.</b></li>
        <?py if expire != "": ?>
        <li>Se te concederá nuevamente el acceso en la siguiente fecha y hora:
          <b>#{expire}</b>.</li>
        <?py #endif ?>
      </ul>
      <hr />
      <p>Si crees que tu expulsión fue puesta incorrectamente no dudes en <a
          href="mailto:burocracia@bienvenidoainternet.org">contactarnos</a> dando tu IP, razón y explicación de los
        hechos.
      </p>
      <p style="font-size:small;">P.S.: En muchos casos a pesar de que hayas sido expulsado del sitio se concede el acceso a la sección <a href="/bai/">Meta</a>.</p>
      <p class="thx">¡Gracias por usar Bienvenido a Internet BBS/IB!</p>
    </div>
  </div>
</body>
</html>