2022-10-16 12:07:43 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
|
2023-04-03 21:45:44 +02:00
|
|
|
<section class="section-sm bg-gray">
|
2022-10-16 12:07:43 +02:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2023-04-03 21:45:44 +02:00
|
|
|
<div class="col-lg-8 mb-4 mb-lg-0">
|
2022-10-16 12:07:43 +02:00
|
|
|
<form action="https://php.cantorgymnasium.de/formtools/process.php" method="post" enctype="multipart/form-data">
|
2022-10-16 16:05:03 +02:00
|
|
|
<input type="hidden" name="form_tools_form_id" value="5" />
|
2023-04-04 18:34:22 +02:00
|
|
|
<div hidden>
|
2023-02-02 20:17:32 +01:00
|
|
|
<input type="text" name="bad_email" value="" />
|
|
|
|
</div>
|
2023-04-04 18:34:22 +02:00
|
|
|
<div class="input-group">
|
|
|
|
<input type="text" class="form-control mb-3" id="surname" name="visitor_surname" placeholder="Name (Schüler/in)" required>
|
|
|
|
<input type="text" class="form-control mb-3" id="name" name="visitor_name" placeholder="Vorname" required>
|
2022-10-16 12:07:43 +02:00
|
|
|
</div>
|
2023-04-04 18:34:22 +02:00
|
|
|
<div class="input-group mb-3">
|
|
|
|
<span class="input-group-text">Geburtsdatum</span>
|
|
|
|
<input type="date" class="form-control" id="birthday" name="visitor_birthday" min="2005-01-01" required>
|
|
|
|
</div>
|
|
|
|
<input type="text" class="form-control mb-3" id="street" name="street" placeholder="Straße" required>
|
|
|
|
<div class="input-group">
|
|
|
|
<input type="text" class="form-control mb-3" id="house" name="house" placeholder="Hausnummer" required>
|
|
|
|
<input type="text" class="form-control mb-3" id="adresszusatz" name="adresszusatz" placeholder="Adresszusatz">
|
|
|
|
</div>
|
|
|
|
<div class="input-group">
|
|
|
|
<input type="text" inputmode="numeric" class="form-control mb-3" id="zipcode" name="zipcode" placeholder="PLZ" pattern="[0-9]{5}" title="Postleitzahlen bestehen aus exakt 5 Ziffern" required>
|
|
|
|
<input type="text" class="form-control mb-3" id="city" name="city" placeholder="Stadt" required>
|
2022-10-16 12:07:43 +02:00
|
|
|
</div>
|
|
|
|
<input type="text" class="form-control mb-3" id="landkreis" name="landkreis" placeholder="Landkreis">
|
2023-04-04 18:34:22 +02:00
|
|
|
<div class="input-group">
|
|
|
|
<input type="tel" class="form-control mb-3" id="tpriv" name="tpriv" placeholder="Telefon privat">
|
|
|
|
<input type="tel" class="form-control mb-3" id="tdienstl" name="tdienstl" placeholder="Telefon dienstl.">
|
2022-10-16 12:07:43 +02:00
|
|
|
</div>
|
|
|
|
<input type="text" class="form-control mb-3" id="dpname" name="dpname" placeholder="Abweichender Elternname">
|
|
|
|
<input type="text" class="form-control mb-3" id="grundschule" name="grundschule" placeholder="Grundschule" required>
|
|
|
|
<input type="email" class="form-control mb-3" id="mail" name="visitor_email" placeholder="Ihre E-Mail Adresse" required>
|
|
|
|
<textarea name="visitor_message" id="message" class="form-control mb-3" placeholder="Bemerkungen"></textarea>
|
2023-04-04 18:34:22 +02:00
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="file" class="form-control" id="zeugnis_1" name="zeugnis_1" accept="image/*,.pdf">
|
|
|
|
<span class="input-group-text">Zeugnis (Vorderseite)</span>
|
|
|
|
</div>
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="file" class="form-control" id="zeugnis_2" name="zeugnis_2" accept="image/*,.pdf">
|
|
|
|
<span class="input-group-text">Zeugnis (Rückseite)</span>
|
|
|
|
</div>
|
|
|
|
<div class="input-group mb-3">
|
|
|
|
<input type="file" class="form-control" id="slbe" name="slbe" accept="image/*,.pdf">
|
|
|
|
<span class="input-group-text">Schullaufbahnempfehlung</span>
|
|
|
|
</div>
|
2023-04-19 22:44:06 +02:00
|
|
|
<div class="input-group mb-3">
|
2023-04-04 18:34:22 +02:00
|
|
|
<div class="input-group-text">
|
|
|
|
<input type="checkbox" class="form-check-input" id="accept" name="accept" required>
|
|
|
|
</div>
|
2023-04-19 22:44:06 +02:00
|
|
|
<p class="form-control mb-0">Hiermit melden wir unser Kind verbindlich zur Aufnahmeprüfung an.</p>
|
2023-04-04 18:34:22 +02:00
|
|
|
</div>
|
2023-04-19 22:44:06 +02:00
|
|
|
<button type="submit" value="send" class="btn btn-primary">{{ i18n "send" }}</button>
|
2022-10-16 12:07:43 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2023-04-03 21:45:44 +02:00
|
|
|
<div class="col-lg-4">
|
2022-10-16 12:07:43 +02:00
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{ end }}
|