I am setting up a navbar that contains a button that is expected to submit the form in the body (album_form). Any suggestions on what to put in for the onclick to accomplish this?
<body>
  <header>
    <navbar>
      <button type="submit" name="save_album" class="btn" id="save_album" onclick="????" value="Save Album">Save Album</button>
    </navbar>
  </header>
  <main>
    <form action="/album/" method="POST" name="album_form" id="album_form">
     <input />
    </form>
  </main>
</body>
 
     
     
     
     
    