Skip to content

Commit d87ef67

Browse files
authored
Add insurance input card to the form
Added insurance input section with minimum insurance field.
1 parent a76454f commit d87ef67

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

index.html

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ <h2>📐 Maße</h2>
115115
</div>
116116
</div>
117117

118-
<div class="input-card weight">
118+
<div class="input-card weight">
119119
<h2>⚖️ Gewicht</h2>
120120
<div class="weight-input">
121121
<div class="input-wrapper">
@@ -141,6 +141,26 @@ <h2>⚖️ Gewicht</h2>
141141
</div>
142142
</div>
143143

144+
<div class="input-card insurance">
145+
<h2>🛡️ Versicherung</h2>
146+
<div class="insurance-input">
147+
<div class="input-wrapper">
148+
<label for="min-insurance">Mindestens</label>
149+
<div class="input-with-unit">
150+
<input
151+
type="number"
152+
id="min-insurance"
153+
placeholder="0"
154+
min="0"
155+
step="50"
156+
aria-label="Mindestversicherung in Euro"
157+
/>
158+
<span class="unit"></span>
159+
</div>
160+
</div>
161+
</div>
162+
</div>
163+
144164
<div class="input-card actions">
145165
<button
146166
id="reset-btn"

0 commit comments

Comments
 (0)