\ No newline at end of file
diff --git a/pages/_includes/forms/form-elements-6.html b/pages/_includes/forms/form-elements-6.html
index 2d2cd90c3..fbfaf2e62 100644
--- a/pages/_includes/forms/form-elements-6.html
+++ b/pages/_includes/forms/form-elements-6.html
@@ -1,8 +1,17 @@
{% include parts/input-datalist.html %}
-{% include parts/input-sizes.html %}
{% include parts/input-range.html %}
-
- {% include ui/progress.html %}
+
+ {% include ui/progress.html class="mb-2" %}
+ {% include ui/progress.html indeterminate=true color="green" %}
+
+
+
+
+
+ {% include ui/button.html color="secondary" block=true icon="brand/github" icon-color="github" text="Login with Github" %}
+ {% include ui/button.html color="secondary" block=true icon="brand/twitter" icon-color="twitter" text="Login with Twitter" %}
+
+
\ No newline at end of file
diff --git a/pages/_includes/ui/progress.html b/pages/_includes/ui/progress.html
index 7604cecde..1b8afc94b 100644
--- a/pages/_includes/ui/progress.html
+++ b/pages/_includes/ui/progress.html
@@ -2,7 +2,7 @@
{% assign colors = include.colors | default: 'blue,red,green,yellow,dark' | split: ',' %}
{% if include.indeterminate %}
-
+
{% elsif include.values %}
{% assign values = include.values | split: ',' %}
{% for value in values %}
diff --git a/pages/form-elements.html b/pages/form-elements.html
index 2328e5be2..ce2ce9182 100644
--- a/pages/form-elements.html
+++ b/pages/form-elements.html
@@ -5,40 +5,39 @@ menu: forms
---