Blame view

index.html 2.89 KB
01ebf78c   Administrator   Initial commit
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
  <!DOCTYPE html>
  <html>
  <head>
    <title>Welcome!</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <style>
      * {
        margin: 0;
        padding: 0;
        border: 0 none;
        background: none;
      }
      body {
        font-weight: normal;
        font-size: 11px;
        font-family: Arial;
      }
      #login-wrapper {
        width: 270px;
        left: 50%;
        margin-left: -135px;
        position: absolute;
        margin-top: -135px;
        top: 50%;
      }
      #login-form {
        width: 270px;
        background: #78a5df;
        height: 270px;
        -webkit-border-radius: 135px;
        -moz-border-radius: 135px;
        border-radius: 135px;
      }
      ul li {
        list-style: none;
      }
      .body-login-form .tab-content {
        position: inherit;
        padding: inherit;
      }
      .b-title {
        text-align: center;
        padding-top: 100px;
        color: white;
        margin-bottom: 20px;
        font-size: 27px;
      }
      .b-content {
        font-size: 12px;
        color: #FFF;
        text-align: center;
      }
      .b-copyright {
        margin-top: 40px;
        text-align: center;
      }
      .b-copyright__link {
        color: #587b9d;
      }
      .b-text_lang_ru {
        display: none;
      }
    </style>
  </head>
  <body class="body-login-form">
  <div id="main-wrapper">
    <div id="overlay" class="hide"></div>
    <div id="content" class="tab-content active" data-tabid="tab1"><div id="login-wrapper">
      <div id="login-form">
        <div id="login-form-form">
          <h2 class="b-title b-text b-text_lang_en">Welcome!</h2>
          <h2 class="b-title b-text b-text_lang_ru">Приветствуем!</h2>
          <div class="b-content">
            <span class="b-text b-text_lang_en">Site test-10.artweb.com.ua just created.</span>
            <span class="b-text b-text_lang_ru">Сайт test-10.artweb.com.ua только что создан.</span>
            <br/>
            <span class="b-text b-text_lang_en">Real content coming soon.</span>
          </div>
        </div>
      </div>
      <div class="b-copyright">
        <a class="b-copyright__link" href="http://ispsystem.com/external/ispmanager.html" target="_blank">ISPsystem © 1997-2015</a>
      </div>
      <div id="error-log" style="display: none;"></div>
    </div></div>
  </div>
  <script type="text/javascript">
    var platformLanguage = navigator && (
        navigator.language ||
          navigator.browserLanguage ||
          navigator.systemLanguage ||
          navigator.userLanguage ||
          null ),
      elemsRU, elemsEN;
    if (platformLanguage.match("ru") && document.getElementsByClassName) {
      elemsRU = document.getElementsByClassName("b-text_lang_ru");
      elemsEN = document.getElementsByClassName("b-text_lang_en");
      var l = elemsEN.length;
      while(l--) {
        elemsEN[l].style.display = "none";
      }
      l = elemsRU.length;
      while(l--) {
        elemsRU[l].style.display = "block";
      }
      document.title = "Приветствуем!";
    }
  </script>
  </body>
  </html>