diff --git a/ui/main/admin.py b/ui/main/admin.py
deleted file mode 100644
index 8c38f3f..0000000
--- a/ui/main/admin.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from django.contrib import admin
-
-# Register your models here.
diff --git a/ui/main/forms.py b/ui/main/forms.py
deleted file mode 100644
index 7a3fea3..0000000
--- a/ui/main/forms.py
+++ /dev/null
@@ -1,21 +0,0 @@
-from django import forms
-
-class Lights(forms.Form):
- required_css_class = "list-group-item"
-
- MODES = [
- ('0', 'Apagar todo'),
- ('1', 'Encender todo'),
- ('2', 'Sala'),
- ('3', 'Pasillo'),
- ('4', 'Cocina'),
- ('5', 'Cuarto 1'),
- ('6', 'Cuarto 2'),
-
- ]
- light = forms.ChoiceField(
- widget=forms.RadioSelect,
- choices=MODES,
- label="Select lights to modify"
- )
-
\ No newline at end of file
diff --git a/ui/main/models.py b/ui/main/models.py
deleted file mode 100644
index 71a8362..0000000
--- a/ui/main/models.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from django.db import models
-
-# Create your models here.
diff --git a/ui/main/static/1.jpg b/ui/main/static/1.jpg
deleted file mode 100644
index 32de50e..0000000
Binary files a/ui/main/static/1.jpg and /dev/null differ
diff --git a/ui/main/static/2.jpg b/ui/main/static/2.jpg
deleted file mode 100644
index b454832..0000000
Binary files a/ui/main/static/2.jpg and /dev/null differ
diff --git a/ui/main/static/3.jpg b/ui/main/static/3.jpg
deleted file mode 100644
index b5bc07c..0000000
Binary files a/ui/main/static/3.jpg and /dev/null differ
diff --git a/ui/main/templates/base.html b/ui/main/templates/base.html
index 8a19203..541dfdb 100644
--- a/ui/main/templates/base.html
+++ b/ui/main/templates/base.html
@@ -39,18 +39,18 @@
{% endif %}
+
{% block content %}{% endblock %}
-
+
-
+
-