github.com/jancarloviray/community@v0.41.1-0.20170124221257-33a66c87cf2f/core/database/templates/db-error.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  
     4  <head>
     5      <meta charset="utf-8">
     6      <meta http-equiv="X-UA-Compatible" content="IE=edge">
     7      <meta name="viewport" content="width=device-width, initial-scale=1">
     8  
     9      <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,300' rel='stylesheet' type='text/css'>
    10  
    11      <title>Documize - Issue using the given MySQL database</title>
    12  
    13      <style>
    14          html {
    15              -webkit-font-smoothing: antialiased;
    16          }
    17          
    18          body {
    19              font-family: 'Open Sans', sans-serif;
    20              background-color: #1b75bb;
    21              font-size: 16px;
    22              color: #ffffff;
    23              padding-top: 50px;
    24          }
    25          
    26          .container {
    27              max-width: 1200px;
    28              margin: 0 auto;
    29              text-align: center;
    30          }
    31          
    32          .logo {
    33              margin: 0 15px;
    34          }
    35          
    36          .content {
    37              margin: 0 15px;
    38          }
    39          
    40          .content > div {
    41              margin: 50px 0;
    42          }
    43          
    44          .content h1 {
    45              font-size: 24px;
    46              font-weight: 400;
    47              text-transform: uppercase;
    48              margin: 0 0 30px;
    49          }
    50          
    51          .content p {
    52              font-size: 18px;
    53              line-height: 28px;
    54              margin: 30px 0 0 0;
    55          }
    56          
    57          .content .image {
    58              text-align: center;
    59          }
    60          
    61          .clearfix {
    62              overflow: auto;
    63              zoom: 1;
    64          }
    65          
    66          .btn-main {
    67              border: 1px solid #ffffff;
    68              padding: 12px 20px;
    69              border-radius: 5px;
    70              margin-left: 25px;
    71          }
    72          
    73          @media (min-width: 768px) {
    74              body {
    75                  margin-top: 100px;
    76              }
    77              .container {
    78                  text-align: left;
    79              }
    80              .content {
    81                  margin: 50px 15px 0;
    82              }
    83              .content > div {
    84                  width: 50%;
    85                  float: left;
    86                  margin: 0;
    87              }
    88              .content h1 {
    89                  font-size: 28px;
    90                  line-height: 72px;
    91              }
    92              .content .image {
    93                  float: right;
    94              }
    95              .content .text {
    96                  max-width: 430px;
    97              }
    98          }
    99      </style>
   100  </head>
   101  
   102  <body>
   103      <div id="wrapper">
   104          <div class="container">
   105              <div class="logo">
   106                  <img src="/assets/img/setup/logo.png" alt="Documize">
   107              </div>
   108              <div class="content clearfix">
   109                  <div class="image">
   110                      <img style="-webkit-user-select: none;" src="/assets/img/setup/error.png" width="184" height="159" alt="Database error">
   111                  </div>
   112                  <div class="text">
   113                      <h1>Database Error</h1>
   114                      <p>There seems to be a problem with the Documize database: <strong>{{.DBname}}</strong></p>
   115                      <p><em>{{.Issue}}</em></p>
   116                  </div>
   117              </div>
   118          </div>
   119      </div>
   120  </body>
   121  
   122  </html>