login.html 926 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>新经资讯后台管理</title>
  6. <link rel="stylesheet" type="text/css" href="../../static/admin/css/reset.css">
  7. <link rel="stylesheet" type="text/css" href="../../static/admin/css/main.css">
  8. </head>
  9. <body>
  10. <div class="login_logo">
  11. <img src="../../static/admin/images/logo.png" alt="">
  12. </div>
  13. <form method="post" class="login_form">
  14. <h1 class="login_title">用户登录</h1>
  15. <input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
  16. <input type="text" name="username" placeholder="用户名" class="input_txt">
  17. <input type="password" name="password" placeholder="密码" class="input_txt">
  18. {% if errmsg %}
  19. <div class="error_tip" style="display: block">{{ errmsg }}</div>
  20. {% endif %}
  21. <input type="submit" value="登 录" class="input_sub">
  22. </form>
  23. <div class="login_bg"></div>
  24. </body>
  25. </html>