change input names in form maker

This commit is contained in:
Aljaz S
2021-11-23 14:49:27 +01:00
parent 1b523e9ffc
commit 8777af4b72

View File

@@ -47,52 +47,52 @@ section div {
<span>Fill in the fields with static information and leave empty the ones that the user has to fill out.</span> <span>Fill in the fields with static information and leave empty the ones that the user has to fill out.</span>
<form action="/form" method="get" class="maker"> <form action="/form" method="get" class="maker">
<div> <div>
<label for="maker-form-title">Form title</label> <label for="form-title">Form title</label>
<input type="text" placeholder="First half of the bike" name="maker-form-title"> <input type="text" placeholder="First half of the bike" name="form-title">
</div> </div>
<div> <div>
<label for="maker-form-client-name">Client name</label> <label for="form-client-name">Client name</label>
<input type="text" placeholder="Peter Novak" name="maker-form-client-name"> <input type="text" placeholder="Peter Novak" name="form-client-name">
</div> </div>
<div> <div>
<label for="maker-form-client-address">Client address</label> <label for="form-client-address">Client address</label>
<input type="text" placeholder="Ravna ulica 13 a" name="maker-form-client-address"> <input type="text" placeholder="Ravna ulica 13 a" name="form-client-address">
</div> </div>
<div> <div>
<label for="maker-form-client-city">Client city</label> <label for="form-client-city">Client city</label>
<input type="text" placeholder="1000 Ljubljana" name="maker-form-client-city"> <input type="text" placeholder="1000 Ljubljana" name="form-client-city">
</div> </div>
<div> <div>
<label for="maker-form-amount">Amount</label> <label for="form-amount">Amount</label>
<input type="number" placeholder="00000001132" name="maker-form-amount"> <input type="number" placeholder="00000001132" name="form-amount">
</div> </div>
<div> <div>
<label for="maker-form-code">Purpose code</label> <label for="form-code">Purpose code</label>
<input type="text" placeholder="OTHR" name="maker-form-code"> <input type="text" placeholder="OTHR" name="form-code">
</div> </div>
<div> <div>
<label for="maker-form-purpose">Payment purpose</label> <label for="form-purpose">Payment purpose</label>
<input type="text" placeholder="moutain bike first half" name="maker-form-purpose"> <input type="text" placeholder="moutain bike first half" name="form-purpose">
</div> </div>
<div> <div>
<label for="maker-form-iban">IBAN</label> <label for="form-iban">IBAN</label>
<input type="number" placeholder="SI56047500000280672" name="maker-form-iban"> <input type="number" placeholder="SI56047500000280672" name="form-iban">
</div> </div>
<div> <div>
<label for="maker-form-reference">Reference</label> <label for="form-reference">Reference</label>
<input type="text" placeholder="SI121234567890120" name="maker-form-reference"> <input type="text" placeholder="SI121234567890120" name="form-reference">
</div> </div>
<div> <div>
<label for="maker-form-issuer-name">Issuer name</label> <label for="form-issuer-name">Issuer name</label>
<input type="text" placeholder="Spletne strani na 123" name="maker-form-issuer-name"> <input type="text" placeholder="Spletne strani na 123" name="form-issuer-name">
</div> </div>
<div> <div>
<label for="maker-form-issuer-address">Issuer address</label> <label for="form-issuer-address">Issuer address</label>
<input type="text" placeholder="Za deveto smreko 15 k" name="maker-form-issuer-address"> <input type="text" placeholder="Za deveto smreko 15 k" name="form-issuer-address">
</div> </div>
<div> <div>
<label for="maker-form-issuer-city">Issuer city</label> <label for="form-issuer-city">Issuer city</label>
<input type="text" placeholder="1000 Ljubljana" name="maker-form-issuer-city"> <input type="text" placeholder="1000 Ljubljana" name="form-issuer-city">
</div> </div>
<div> <div>
<input type="submit" value="Create form"> <input type="submit" value="Create form">