i'm new to this world, so what i'm trying to do is create a form that you select specific field when you create an object and send the input to and pdf output.
this is the code that i have, but i dont now if i'm doing the thing good please help, best regards, and how can send all this input to a POST and past it to a pdf format?
<html>
<body>
<h1> Create A Bridge Domain </h1>
<form>
  Name of the BD:<br>
  <input type="text" name="firstname"><br>
  Name of the VRF that belongs this BD:<br>
  <input type="text" name="lastname">
</form>
<p>L2 Unknown Unicast</p>
<select name="L2 Unknown Unicast ">
  <option value="L2 Unknown Unicast">Flood</option>
  <option value="none">none</option>
</select> 
<p>L3 Unknown Unicast</p>
<select name="L3 Unknown Unicast ">
  <option value="L3 Unknown Unicast">Flood</option>
  <option value="none">none</option>
</select> 
<p>Multi Destination Flooding</p>
<select name="Multi Destination Flooding ">
  <option value="Multi Destination Flooding">Flood in BD</option>
  <option value="none">none</option>
</select> 
<p>ARP Flooding</p>
<select name="ARP Flooding  ">
  <option value="ARP Flooding ">Enable</option>
  <option value="ARP Flooding ">Disable</option>
</select> 
<p>Subnets</p>
<select name="Subnets">
  <option value="Subnets">Enable</option>
  <option value="Subnets">Disable</option>
</select> 
</body>
</html>  
     
    