2023-10-13 20:48:11 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2023-10-14 20:13:56 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2023-10-13 20:48:11 +02:00
|
|
|
<link href="style.css" rel="stylesheet" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<form>
|
2023-10-14 16:28:19 +02:00
|
|
|
<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>
|
2023-10-14 20:14:32 +02:00
|
|
|
<input name="autocontinue" id="autocontinue" type="checkbox" />
|
2023-10-14 16:28:19 +02:00
|
|
|
</label>
|
|
|
|
<div class="item"><button type="submit">Save</button><span id="success"></span></div>
|
|
|
|
<p id="errors"></p>
|
2023-10-13 20:48:11 +02:00
|
|
|
</form>
|
2023-10-14 20:14:32 +02:00
|
|
|
<script src="script.js"></script>
|
2023-10-13 20:48:11 +02:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|