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.
36 lines
822 B
36 lines
822 B
<!DOCTYPE html>
|
|
{% load static %}
|
|
<html>
|
|
<head>
|
|
<title>User Login</title>
|
|
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
|
|
<style type="text/css">
|
|
.text-overflow {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 500px;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div id="login">
|
|
<h1>This is an example of the Authorization Code flow</h1>
|
|
<a href="/login" class="btn btn-primary">Log In (Original)</a>
|
|
<button id="login-btn">Log In</button>
|
|
</div>
|
|
|
|
<div id="data-container">
|
|
<ul id="data-list">
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="{% static 'spotifyvis/scripts/index.js' %}"></script>
|
|
</body>
|
|
</html>
|