Learn HTML Forms by Building a Registration Form - Step 18

Tell us what’s happening:

Describe your issue in detail here.

After completing this step there are: No instructions. No Step 19 Header. I only get the Contact Form display and the Index.html clickable button.
I clicked on the ‘Learn HTML Forms by Building a Registration Form’ button. Went to Step 19 to see if it’ll just allow me to override the issue, but ended up with on the same page.

What can I do to resolve this issue in, layman’s terms, if possible? Thanks in advanced!

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
    <form method="post" action='https://register-demo.freecodecamp.org'>

<!-- User Editable Region -->

      <fieldset>
        <label for="first-name">Enter Your First Name: <input /></label>
        <label>Enter Your Last Name: <input /></label>
        <label>Enter Your Email: <input /></label>
        <label>Create a New Password: <input /></label>
      </fieldset>

<!-- User Editable Region -->

      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

label {
  display: block;
  margin: 0.5rem 0;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15

Challenge Information:

Learn HTML Forms by Building a Registration Form - Step 18

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Hi @LadyP !
I’m not getting your problem clearly, are you having a problem with some of the buttons disappearing or are you having a problem with you code. Elaborate further kindly.

1 Like

I am having an issue with the buttons popping up.

[Page 19 Error?]

(https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-forms-by-building-a-registration-form/step-19)

Are they functioning as expected?

1 Like

This is the screen I am receiving.

Have you tried resetting the lesson? Or perhaps using a different browser?

1 Like

Resetting the step didn’t work. Resetting the entire lesson didn’t work. Opening a different browser (Chrome vs Safari) did work. Thank you.

Ok. Let me look into it.

1 Like

Try doing the following:

  1. Hard refresh by: Hold down Ctrl and ⇧ Shift and then press R. Or, hold the Ctrl key and press the F5 key.
  2. Clear browser caches.
  3. Use a different device.
1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.