Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
802 B

6 years ago
  1. <!DOCTYPE html>
  2. {% load static %}
  3. <html>
  4. <head>
  5. <title>User Login</title>
  6. <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="{% static 'spotifyvis/css/dark_bg.css' %}">
  8. <style type="text/css">
  9. .text-overflow {
  10. overflow: hidden;
  11. text-overflow: ellipsis;
  12. white-space: nowrap;
  13. width: 500px;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div class="container">
  19. <div id="login">
  20. <h1>spotify-lib-vis</h1>
  21. <a href="/login" class="btn btn-primary">Scan Library</a>
  22. <a href="{% url "admin_graphs" %}" class="btn btn-primary">Admin Graphs</a>
  23. </div>
  24. </div>
  25. <script src="{% static 'spotifyvis/scripts/index.js' %}"></script>
  26. </body>
  27. </html>