add id's to form inputs
This commit is contained in:
		@ -59,7 +59,7 @@
 | 
			
		||||
            <div class="col-2">
 | 
			
		||||
                <div>
 | 
			
		||||
                    <label for="salutation">Anrede</label>
 | 
			
		||||
                    <input class="full-width" list="salutationsOpt" name="salutation" placeholder="Anrede" th:value="${user.salutation}"
 | 
			
		||||
                    <input class="full-width" list="salutationsOpt" name="salutation" id="salutation" placeholder="Anrede" th:value="${user.salutation}"
 | 
			
		||||
                           required/>
 | 
			
		||||
                    <datalist id="salutationsOpt">
 | 
			
		||||
                        <option value="Herr">
 | 
			
		||||
@ -70,14 +70,14 @@
 | 
			
		||||
                </div>
 | 
			
		||||
                <div>
 | 
			
		||||
                    <label for="name">Name</label>
 | 
			
		||||
                    <input class="full-width" type="text" name="name" placeholder="Nachname Vorname" th:value="${user.name}"
 | 
			
		||||
                    <input class="full-width" type="text" name="name" id="name" placeholder="Nachname Vorname" th:value="${user.name}"
 | 
			
		||||
                           required/>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div>
 | 
			
		||||
                <label for="address">Anschrift</label>
 | 
			
		||||
                <textarea rows="5" class="full-width" type="text" name="address"
 | 
			
		||||
                <textarea rows="5" class="full-width" type="text" name="address" id="address"
 | 
			
		||||
                          placeholder="Optional: Zusatz
Optional: Unternehmen
Straße Hausnummer
Postleitzeit Ort
Land" th:text="${user.defaultDeliveryAddress.addressString}"/>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div>
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user