Files
spotify-lib-vis/login/templates/login/index.html
Kevin Mok e50d3d8476 Login app working (#47)
Can login and create User object. Also now store user token info in db
(closes #48).
2018-06-29 08:43:03 -04:00

29 lines
742 B
HTML

<!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">
<link rel="stylesheet" href="{% static 'css/dark_bg.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>spotify-lib-vis</h1>
<a href="{% url 'login:spotify_login' %}" class="btn btn-primary">Login</a>
<a href="{% url 'login:admin_graphs' %}" class="btn btn-primary">Admin Graphs</a>
</div>
</div>
</body>
</html>