diff --git a/warehouse/templates/accounts/register.html b/warehouse/templates/accounts/register.html
index a0f3bd248f6b..530d1a95af42 100644
--- a/warehouse/templates/accounts/register.html
+++ b/warehouse/templates/accounts/register.html
@@ -62,79 +62,40 @@
{% trans title=title %}Create an account on {{ title }}{%
{% for error in form.form_errors %}
{{ error }}{% endfor %}
{% endif %}
-
-
+{{ render_form_field(
+ form.full_name,
+ label=gettext("Name"),
+ placeholder=gettext("Your name"),
+ class_="form-group__field",
+ autocomplete="name",
+ autocapitalize="off",
+ spellcheck="false"
+) }}
+{{ render_form_field(
+ form.email,
+ label=gettext("Email address"),
+ placeholder=gettext("Your email address"),
+ class_="form-group__field",
+ autocomplete="email",
+ spellcheck="false",
+ required="required"
+) }}
{# The following is a honeypot field and is hidden from the user #}
{{ form.confirm_form(class="form-group__field",
aria_hidden='true',) }}
-
+{{ render_form_field(
+ form.username,
+ label=gettext("Username"),
+ placeholder=gettext("Select a username"),
+ class_="form-group__field",
+ autocapitalize="off",
+ autocomplete="username",
+ spellcheck="false",
+ required="required"
+) }}