From e29da6ce6f23a75d5abaeb53e1b736c3e37e31e9 Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Wed, 14 Feb 2018 23:00:21 -0200 Subject: [PATCH] Add a functional homepage using team and event lookups based on geoip or specifid city. Use Searchable to include federated events. Move login to it's own page --- .../templates/get_together/users/login.html | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 get_together/templates/get_together/users/login.html diff --git a/get_together/templates/get_together/users/login.html b/get_together/templates/get_together/users/login.html new file mode 100644 index 0000000..f7769f7 --- /dev/null +++ b/get_together/templates/get_together/users/login.html @@ -0,0 +1,20 @@ +{% extends "get_together/base.html" %} + +{% block content %} +
+

Welcome to Get Together!

+ +

Login

+ +{% if settings.SOCIAL_AUTH_GOOGLE_OAUTH2_KEY %}Google{% endif %} +{% if settings.SOCIAL_AUTH_FACEBOOK_KEY %}Faceboook{% endif %} +{% if settings.SOCIAL_AUTH_TWITTER_KEY %}Twitter{% endif %} +{% if settings.SOCIAL_AUTH_GITHUB_KEY %}GitHub{% endif %} +{% if settings.DEBUG %}Local{% endif %} +
+
+{% endblock %} +