One page fails to render

  • Netlify site name: gringo-search.netlify.app
  • Advanced Search page fails to render

Build log:

6:16:36 PM: build-image version: 442a909cc19725b67a71cc230a935e063dadf683 (focal)
6:16:36 PM: buildbot version: 716793686322a0f551ced71ae75eb84b472ba215
6:16:36 PM: Fetching cached dependencies
6:16:36 PM: Starting to download cache of 184.1KB
6:16:36 PM: Finished downloading cache in 13ms
6:16:36 PM: Starting to extract cache
6:16:36 PM: Finished extracting cache in 117ms
6:16:36 PM: Finished fetching cache in 157ms
6:16:36 PM: Starting to prepare the repo for build
6:16:36 PM: Preparing Git Reference refs/heads/main
6:16:36 PM: Parsing package.json dependencies
6:16:37 PM: Starting to install dependencies
6:16:37 PM: Python version set to 3.8
6:16:38 PM: Attempting Ruby version 2.7.2, read from environment
6:16:38 PM: Using Ruby version 2.7.2
6:16:39 PM: Started restoring cached go cache
6:16:39 PM: Finished restoring cached go cache
6:16:39 PM: Installing Go version 1.19.5 (requested 1.19.5)
6:16:44 PM: go version go1.19.5 linux/amd64
6:16:44 PM: Using PHP version 8.0
6:16:45 PM: v16.20.0 is already installed.
6:16:45 PM: Now using node v16.20.0 (npm v8.19.4)
6:16:45 PM: Enabling Node.js Corepack
6:16:45 PM: Started restoring cached build plugins
6:16:45 PM: Finished restoring cached build plugins
6:16:45 PM: Install dependencies script success
6:16:45 PM: No build steps found, continuing to publishing
6:16:45 PM: Starting to deploy site from ‘/’
6:16:45 PM: Calculating files to upload
6:16:45 PM: 1 new files to upload
6:16:46 PM: Starting post processing
6:16:45 PM: 0 new functions to upload
6:16:46 PM: Section completed: deploying
6:16:46 PM: Section completed: building
6:16:46 PM: Post processing - HTML
6:16:46 PM: Uploading Cache of size 184.9KB
6:16:46 PM: Section completed: cleanup
6:16:46 PM: Finished processing build request in 10.173s
6:16:46 PM: Post processing - header rules
6:16:46 PM: Post processing - redirect rules
6:16:46 PM: Post processing done
6:16:46 PM: Section completed: postprocessing
6:16:47 PM: Site is live :sparkles:

Hi @MeanMachineRex, in your advanced.html file, you have invalid stray form and div closing tags in your code based on your site’s inspection from Chrome Dev Tools.

Kindly find the HTML below with invalid tags removed

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Search</title>
    <link rel="stylesheet" href="styles.css" />
    <link
      href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
      rel="stylesheet"
      integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
      crossorigin="anonymous"
    />
  </head>
  <body style="background-color: black;">
    <ul class="nav justify-content-end">
      <li class="nav-item">
        <a class="nav-link active" aria-current="page" href="index.html"
          >Home</a
        >
      </li>
      <li class="nav-item">
        <a class="nav-link" href="image.html">Image Search</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="advanced.html">Advanced Search</a>
      </li>
      <li class="nav-item">
        <a class="nav-link disabled"></a>
      </li>
    </ul>
    <div id="search">
      <img src="gringo-ultra.png" class="center" />

      <div class="row mb-3">
        <form action="https://google.com/search">
          <p>Find pages with...</p>
          <input
            type="input"
            class="form-control form-control-sm"
            id="colFormLabelSm"
            name="as_q"
            placeholder="all these words:"
          />
          <input
            type="input"
            class="form-control form-control-sm"
            id="colFormLabelSm"
            name="as_epq"
            placeholder="this exact word or phrase:"
          />
          <input
            type="input"
            class="form-control form-control-sm"
            id="colFormLabelSm"
            name="as_oq"
            placeholder="any of these words:"
          />
          <input
            type="input"
            class="form-control form-control-sm"
            id="colFormLabelSm"
            name="as_eq"
            placeholder="none of these words::"
          />
          <input type="hidden" name="tbm" value="isch" />
          <input type="submit" value="Advanced Search" />
        </form>
      </div>
    </div>
  </body>
</html>

Kindly make the changes and redeploy to see if it works.
Let me know the outcome.

Thanks.