How to add courier service to the shopping cart
Category: Interface tutorials
Instructions for use
Inside the HTML body, below the transport selection form – the following code:
<label for="name">Saaja nimi: *</label>
<input type="text" id="name" name="name" />
<br />
<label for="telephone">Saaja mobiiltelefoni number: *</label>
<input type="text" id="telephone" name="telephone" />
<br />
<label for="email">Saaja e-post:</label>
<input type="email" id="email" name="email" />
<br />
<label for="time">Sobiv ajavahemik: *</label>
<select name="time">
<option>Igal ajal</option>
<option>9-17</option>
<option>17-21</option>
</select>
<br />
<label for="street">Tänav: *</label>
<input type="text" id="street" name="street" />
<br />
<label for="house">Maja: *</label>
<input type="text" id="house" name="house" />
<br />
<label for="flat">Korter: *</label>
<input type="text" id="flat" name="flat" />
<br />
<label for="town">Linn või asula: *</label>
<input type="text" id="town" name="town" />
<br />
<label for="zip">Postiindeks: *</label>
<input type="text" id="zip" name="zip" />
The above code creates this form