Small refinements
This commit is contained in:
@ -35,6 +35,13 @@
|
||||
<input name="email" type="email" placeholder="Email" required />
|
||||
<input name="department" type="text" placeholder="Abteilung" />
|
||||
<input name="year" type="text" placeholder="Jahrgang" />
|
||||
<input
|
||||
name="zusage"
|
||||
id="zusage"
|
||||
type="checkbox"
|
||||
checked
|
||||
style="display: none"
|
||||
/>
|
||||
<button type="submit">Absenden</button>
|
||||
</form>
|
||||
<img src="logo.png" alt="HTL Logo" class="form-logo" />
|
||||
@ -46,12 +53,19 @@
|
||||
<div class="form-box">
|
||||
<h3>Abgesagt</h3>
|
||||
<p>Um es zu Finalisieren füllen Sie bitte die Felder aus</p>
|
||||
<form>
|
||||
<input type="text" placeholder="Vorname" required />
|
||||
<input type="text" placeholder="Nachname" required />
|
||||
<input type="email" placeholder="Email" required />
|
||||
<input type="text" placeholder="Abteilung" />
|
||||
<input type="text" placeholder="Jahrgang" />
|
||||
<form method="post" action="/post">
|
||||
<input name="firstname" type="text" placeholder="Vorname" required />
|
||||
<input name="lastname" type="text" placeholder="Nachname" required />
|
||||
<input name="email" type="email" placeholder="Email" required />
|
||||
<input name="department" type="text" placeholder="Abteilung" />
|
||||
<input name="year" type="text" placeholder="Jahrgang" />
|
||||
<input
|
||||
name="absage"
|
||||
id="absage"
|
||||
type="checkbox"
|
||||
checked
|
||||
style="display: none"
|
||||
/>
|
||||
<button type="submit">Absenden</button>
|
||||
</form>
|
||||
<img src="logo.png" alt="HTL Logo" class="form-logo" />
|
||||
|
Reference in New Issue
Block a user