diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/hackathon_starter/hackathon/forms.py b/hackathon_starter/hackathon/forms.py
index fa57d39..1980e8b 100644
--- a/hackathon_starter/hackathon/forms.py
+++ b/hackathon_starter/hackathon/forms.py
@@ -9,3 +9,6 @@ class UserForm(forms.ModelForm):
class Meta:
model = User
fields = ('username', 'email', 'password')
+
+class UploadFileForm(forms.Form):
+ file = forms.FileField()
diff --git a/hackathon_starter/hackathon/templates/hackathon/base.html b/hackathon_starter/hackathon/templates/hackathon/base.html
index ac32729..372066a 100644
--- a/hackathon_starter/hackathon/templates/hackathon/base.html
+++ b/hackathon_starter/hackathon/templates/hackathon/base.html
@@ -1,61 +1,72 @@
+{% load staticfiles %}
+
+
+{% load bootstrap3 %}
+
+{% bootstrap_css %}
+{% bootstrap_javascript %}
-
+
Django Hackathon Starter
-
+
-
-
-
-
+
\ No newline at end of file
diff --git a/hackathon_starter/hackathon/templates/hackathon/login.html b/hackathon_starter/hackathon/templates/hackathon/login.html
old mode 100644
new mode 100755
index 12d63e9..d7b25f8
--- a/hackathon_starter/hackathon/templates/hackathon/login.html
+++ b/hackathon_starter/hackathon/templates/hackathon/login.html
@@ -26,26 +26,6 @@