diff --git a/yeast/templates/yeast/batch.html b/yeast/templates/yeast/batch.html
index b83927d..cb3976a 100644
--- a/yeast/templates/yeast/batch.html
+++ b/yeast/templates/yeast/batch.html
@@ -20,6 +20,8 @@
-{% endblock %}
\ No newline at end of file
+{% endblock %}
diff --git a/yeast/templates/yeast/batch_form.html b/yeast/templates/yeast/batch_form.html
index 34d529e..e786c1a 100644
--- a/yeast/templates/yeast/batch_form.html
+++ b/yeast/templates/yeast/batch_form.html
@@ -1,23 +1,38 @@
-Add New Batch
+{% extends 'base.html' %}
+{% block style %}
+form { display: table; }
+p { display: table-row; }
+label { display: table-cell; }
+input { display: table-cell; }
+{% endblock %}
-
+{% block content %}
+
+
+
-
\ No newline at end of file
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/yeast/templates/yeast/strain_form.html b/yeast/templates/yeast/strain_form.html
index 70827bf..6e88698 100644
--- a/yeast/templates/yeast/strain_form.html
+++ b/yeast/templates/yeast/strain_form.html
@@ -1,23 +1,38 @@
-Add New Strain
+{% extends 'base.html' %}
+{% block style %}
+form { display: table; }
+p { display: table-row; }
+label { display: table-cell; }
+input { display: table-cell; }
+{% endblock %}
-
+{% block content %}
+
+
+
-
\ No newline at end of file
+
+
+{% endblock %}
\ No newline at end of file