main.html 823 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang = "en">
  3. <head>
  4. <meta charset = "UTF-8">
  5. <title>二维码工具</title>
  6. <!-- Bootstrap CSS -->
  7. <link rel = "stylesheet" href = "../static/css/bootstrap.min.css">
  8. <!-- Customize CSS -->
  9. <link rel = "stylesheet" href = "../static/css/main.css">
  10. <!-- jQuery Base -->
  11. <script src = "../static/js/jquery.min.js"></script>
  12. <!-- QRcode lib -->
  13. <script src = "../static/js/qrcode.js"></script>
  14. <!-- Bootstrap JavaScript -->
  15. <script src = "../static/js/bootstrap.min.js"></script>
  16. <!-- Customize JavaScript -->
  17. <script src = "../static/js/bg.js"></script>
  18. <script src = "../static/js/main.js"></script>
  19. </head>
  20. <body class = "mainPage">
  21. <div id = "container">
  22. <input id = "textInput" class = "form-control" type = "text" value = "" />
  23. <div id = "qrcodeDiv"></div>
  24. </div>
  25. </body>
  26. </html>