-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a164c20
commit 2b19c03
Showing
4 changed files
with
55 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Kontakt | ||
|
||
Bei Fragen oder Anregungen, sind wir auf folgenden Wegen erreichbar: | ||
|
||
- **GitHub:** Entweder in den jeweiligen Repositories der Projekte ein Issue erstellen oder im allgemeinen Repository unter [github.com/latex4ei/Allgemein/issues](https://github.com/latex4ei/Allgemein/issues). | ||
|
||
- **E-Mail:** Für allgemeine Anfragen und außerhalb von GitHub stehen wir auch per E-Mail zur Verfügung: [info@latex4ei.de](mailto:info@latex4ei.de). | ||
|
||
- **Kontaktformular:** | ||
|
||
<form action="https://formspree.io/f/mgveejwg" method="POST"> | ||
<label for="formelsammlung">Betroffene Formelsammlung</label><br> | ||
<input type="text" id="name" name="name" required><br> | ||
|
||
<label for="email">Deine E-Mail-Adresse (für Rückfragen)</label><br> | ||
<input type="email" id="email" name="email" required><br> | ||
|
||
<label for="message">Deine Nachricht</label><br> | ||
|
||
<textarea id="message" name="message" required></textarea><br> | ||
|
||
<button type="submit">Nachricht senden</button> | ||
|
||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
form { | ||
display: flex; | ||
flex-direction: column; | ||
max-width: 600px; | ||
margin: 0 auto; | ||
} | ||
|
||
input, textarea { | ||
margin-bottom: 1rem; | ||
padding: 0.5rem; | ||
font-size: 1rem; | ||
width: 100%; | ||
box-sizing: border-box; | ||
} | ||
|
||
button { | ||
padding: 0.75rem; | ||
font-size: 1rem; | ||
background-color: #007bff; | ||
color: white; | ||
border: none; | ||
cursor: pointer; | ||
} | ||
|
||
button:hover { | ||
background-color: #0056b3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters