-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/issue 81 contact page (#107)
* create basic contact page * refactor shared layout code * add and refactor navigation for contact page * enable full stack navigation support * basic support for isomorhpic rendering * misc refactor * style contact form input borders with accent color
- Loading branch information
1 parent
5579687
commit aa077ff
Showing
5 changed files
with
124 additions
and
99 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
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,31 @@ | ||
<html> | ||
<body> | ||
<h1 class="text-center text-xl">Get in touch!</h1> | ||
|
||
<form name="contact" method="post" class="grid grid-cols-1 w-1/3 ml-auto mr-auto" netlify> | ||
|
||
<label for="subject">Subject</label> | ||
<input name="subject" type="text" | ||
class="border-2 mb-4" | ||
style="border-color:var(--color-accent)" | ||
required | ||
/> | ||
|
||
<label for="email">Email</label> | ||
<input name="email" type="email" | ||
class="border-2 mb-4" | ||
style="border-color:var(--color-accent)" | ||
required | ||
/> | ||
|
||
<label for="message" class="underline">Message</label> | ||
<textarea name="message" | ||
class="border-2 mb-4" | ||
style="border-color:var(--color-accent)" | ||
required | ||
></textarea> | ||
|
||
<button class="btn" type="submit">Send</button> | ||
</form> | ||
</body> | ||
</html> |
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