diff --git a/ACMAS/app/ACMAS_Web/components/field/field.html b/ACMAS/app/ACMAS_Web/components/field/field.html
index 663f1e6..373eb3b 100644
--- a/ACMAS/app/ACMAS_Web/components/field/field.html
+++ b/ACMAS/app/ACMAS_Web/components/field/field.html
@@ -1,12 +1,47 @@
{% load component_tags %}
-
+
{% if component_type == "input" %}
{% else %}
{% if icon_name != "" %}
{% component "icon" icon=icon_name icon_type="mini" icon_class="w-6 h-6 flex-shrink-0 text-gray-400" %}
{% endif %}
-
+
+ {% endif %}
+ {% if name == "password1" and placeholder == "Create password..." %}
+
+
+
Password can't be:
+
+ - too similar to other personal information
+ - less than 8 characters
+ - be a commonly used password
+ - entirely numeric
+
+
+
+
+ {% endif %}
+ {% if name == "username" and placeholder == "Create username..." %}
+
+
+
+ - Required
+ - 150 characters or fewer
+ - Letters, digits and @/./+/-/_ only.
+ - entirely numeric
+
+
+
+
{% endif %}
diff --git a/ACMAS/app/ACMAS_Web/templates/register.html b/ACMAS/app/ACMAS_Web/templates/register.html
index d214e51..ba1ec02 100644
--- a/ACMAS/app/ACMAS_Web/templates/register.html
+++ b/ACMAS/app/ACMAS_Web/templates/register.html
@@ -12,9 +12,9 @@
- {% component "field" component_type="text" placeholder="Enter username..." name="username" icon_name="user" %}
+ {% component "field" component_type="text" placeholder="Create username..." name="username" icon_name="user" %}
{% component "field" component_type="text" placeholder="Enter email..." name="email" icon_name="inbox" %}
- {% component "field" component_type="password" placeholder="Enter password..." name="password1" icon_name="lock-closed" %}
+ {% component "field" component_type="password" placeholder="Create password..." name="password1" icon_name="lock-closed" %}
{% component "field" component_type="password" placeholder="Confirm password..." name="password2" icon_name="lock-closed" %}