lotsa stuff

This commit is contained in:
iw0
2023-10-14 16:28:19 +02:00
parent 8d34088021
commit a519dbe814
11 changed files with 6094 additions and 67 deletions

View File

@ -8,21 +8,25 @@
<body>
<form>
<fieldset>
<label for="bcnum">The number of your BahnCard 100</label>
<input name="bcnum" id="bcnum" type="text" pattern="70814[0-9]{11}" />
</fieldset>
<fieldset>
<label for="birthday">Your date of birth</label>
<input name="birthday" id="birthday" type="date" />
</fieldset>
<fieldset>
<label for="autocontinue">Automatically continue to the "I was delayed by more than 60 minutes" screen</label>
<input name="autocontinue" id="autocontinue" type="checkbox" />
</fieldset>
<button type="submit">Save</button>
<label class="item">
<span class="fh">Your BahnCard 100 number</span><br />
<span class="sh">The number on the front of your card starting with <span class="ms">7081</span>.</span><br>
<input name="bcnum" id="bcnum" type="text" pattern="70814[0-9]{11}" required
title="Your BahnCard number is 16 digits long and starts with 7081." />
</label>
<label class="item">
<span class="fh">Your date of birth</span><br>
<input name="birthday" id="birthday" type="date" required />
</label>
<label>
<span class="fh">Skip questionnaire</span><br>
<span class="sh">Automatically answer "I was delayed, by more than 60 minutes."</span><br>
<input name="autocontinue" id="autocontinue" type="checkbox" required />
</label>
<div class="item"><button type="submit">Save</button><span id="success"></span></div>
<p id="errors"></p>
</form>
<script src="script.js"></script>
<script type="module" src="script.js"></script>
</body>
</html>