123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>PrometheusAlert | 登录控制中心</title>
- <!-- Google Font: Source Sans Pro -->
- <link rel="stylesheet" href="https://fonts.font.im/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
- <!-- Font Awesome -->
- <link rel="stylesheet" href="/static/plugins/fontawesome-free/css/all.min.css">
- <!-- icheck bootstrap -->
- <link rel="stylesheet" href="/static/plugins/icheck-bootstrap/icheck-bootstrap.min.css">
- <!-- Theme style -->
- <link rel="stylesheet"href="/static/dist/css/adminlte.min.css">
- </head>
- <body class="hold-transition login-page">
- <div class="login-box">
- <div class="login-logo">
- <a href="#"><b>Prometheus</b>Alert</a>
- </div>
- <!-- /.login-logo -->
- <div class="card">
- <div class="card-body login-card-body">
- <p class="login-box-msg">登录控制中心</p>
- <form action="/login" method="post">
- <div class="input-group mb-3">
- <input type="text" id="uname" name="username" class="form-control" placeholder="Username">
- <div class="input-group-append">
- <div class="input-group-text">
- <span class="fas fa-envelope"></span>
- </div>
- </div>
- </div>
- <div class="input-group mb-3">
- <input type="password" id="pwd" name="password" class="form-control" placeholder="Password">
- <div class="input-group-append">
- <div class="input-group-text">
- <span class="fas fa-lock"></span>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="col-8">
- <div class="icheck-primary">
- <input type="checkbox" id="remember" name="autologin" checked>
- <label for="remember">
- Remember Me
- </label>
- </div>
- </div>
- <!-- /.col -->
- <div class="col-4">
- <button type="submit" class="btn btn-primary btn-block" onclick="return checkinput();">登录</button>
- </div>
- <!-- /.col -->
- </div>
- </form>
- <div class="social-auth-links text-center mb-3">
- {{if .loginerror}}
- <p>Username or Password For Login Error</p>
- {{end}}
- </div>
- <!-- /.social-auth-links -->
- </div>
- <!-- /.login-card-body -->
- </div>
- </div>
- <!-- /.login-box -->
- <!-- jQuery -->
- <script src="/static/plugins/jquery/jquery.min.js"></script>
- <!-- Bootstrap 4 -->
- <script src="/static/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
- <!-- AdminLTE App -->
- <script src="/static/dist/js/adminlte.min.js"></script>
- <script type="text/javascript">
- function checkinput(){
- var uname=document.getElementById("uname");
- var pwd=document.getElementById("pwd");
- if (uname.value.length==0){
- alert('用户名不能为空');
- return false
- };
- if (pwd.value.length==0){
- alert('密码不能为空');
- return false
- };
- return true
- }
- </script>
- </body>
- </html>
|