diff --git a/bikeshop_project/registration/templates/login.html b/bikeshop_project/registration/templates/login.html new file mode 100644 index 0000000..e12d229 --- /dev/null +++ b/bikeshop_project/registration/templates/login.html @@ -0,0 +1,31 @@ +{% extends 'base.html' %} + +{% block content %} +
+

Welcome

+
+
+ + +
+
+ +
+
+ + + Input is not a number! +
+
+
+ + Get Started + +
+
+ +
+
+{% endblock %} \ No newline at end of file diff --git a/bikeshop_project/registration/urls.py b/bikeshop_project/registration/urls.py new file mode 100644 index 0000000..a96e173 --- /dev/null +++ b/bikeshop_project/registration/urls.py @@ -0,0 +1,6 @@ +from django.conf.urls import url +from django.contrib.auth import views + +urlpatterns = [ + url(r'^login/$', views.login, {'template_name': 'login.html'}), +]