Blame view

backend/makest/lockscreen.html 1.44 KB
d1f8bd40   Alexey Boroda   first 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
  <!DOCTYPE html>
  <html>
  
  <head>
  
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
  
      <title>INSPINIA | 404 Error</title>
  
      <link href="css/bootstrap.min.css" rel="stylesheet">
      <link href="font-awesome/css/font-awesome.css" rel="stylesheet">
  
      <link href="css/animate.css" rel="stylesheet">
      <link href="css/style.css" rel="stylesheet">
  
  </head>
  
  <body class="gray-bg">
  
  <div class="lock-word animated fadeInDown">
      <span class="first-word">LOCKED</span><span>SCREEN</span>
  </div>
      <div class="middle-box text-center lockscreen animated fadeInDown">
          <div>
              <div class="m-b-md">
              <img alt="image" class="img-circle circle-border" src="https://s3.amazonaws.com/uifaces/faces/twitter/ok/128.jpg">
              </div>
              <h3>John Smith</h3>
              <p>Your are in lock screen. Main app was shut down and you need to enter your passwor to go back to app.</p>
              <form class="m-t" role="form" action="index.html">
                  <div class="form-group">
                      <input type="password" class="form-control" placeholder="******" required="">
                  </div>
                  <button type="submit" class="btn btn-primary block full-width">Unlock</button>
              </form>
          </div>
      </div>
  
      <!-- Mainly scripts -->
      <script src="js/jquery-2.1.1.js"></script>
      <script src="js/bootstrap.min.js"></script>
  
  </body>
  
  </html>