-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(contacts): remove email form
- Loading branch information
Showing
1 changed file
with
0 additions
and
68 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,74 +97,6 @@ <h3>Feel free to contact me using any of the following:</h3> | |
</li> | ||
</ul> | ||
</section> | ||
<!-- Text --> | ||
<section> | ||
<!-- FIXME: check https://stackoverflow.com/questions/91905/adding-urgent-priority-to-mail-set-from-mailto-link and https://www.w3.org/TR/WD-html40-970917/htmlweb.html--> | ||
<h3>Or prepare it here:</h3> | ||
<form method="post" action="mailto:[email protected]"> | ||
<div class="row gtr-uniform gtr-50"> | ||
<!-- | ||
<div class="col-6 col-12-xsmall"> | ||
<input type="text" name="name" id="name" value="" placeholder="Name" /> | ||
</div> | ||
<div class="col-6 col-12-xsmall"> | ||
<input type="email" name="email" id="email" value="" placeholder="Email" /> | ||
</div> | ||
--> | ||
<div class="col-12"> | ||
<select name="subject" id="category"> | ||
<option value="">- Category -</option> | ||
<option value="Contact request">Contact request</option> | ||
<option value="Job proposal">Job proposal</option> | ||
<option value="Bug report">Bug report</option> | ||
<option value="Other">Other</option> | ||
</select> | ||
</div> | ||
<!-- | ||
<div class="col-4 col-12-medium"> | ||
<input type="radio" id="priority-low" name="priority" checked> | ||
<label for="priority-low">Low Priority</label> | ||
</div> | ||
<div class="col-4 col-12-medium"> | ||
<input type="radio" id="priority-normal" name="priority"> | ||
<label for="priority-normal">Normal Priority</label> | ||
</div> | ||
<div class="col-4 col-12-medium"> | ||
<input type="radio" id="priority-high" name="priority"> | ||
<label for="priority-high">High Priority</label> | ||
</div> | ||
<div class="col-6 col-12-medium"> | ||
<input type="checkbox" id="copy" name="copy"> | ||
<label for="copy">Email me a copy of this message</label> | ||
</div> | ||
<div class="col-6 col-12-medium"> | ||
<input type="checkbox" id="human" name="human" checked> | ||
<label for="human">I am a human and not a robot</label> | ||
</div> | ||
--> | ||
<div class="col-12"> | ||
<textarea | ||
name="body" | ||
id="message" | ||
placeholder="Enter your message" | ||
rows="6" | ||
></textarea> | ||
</div> | ||
<div class="col-12"> | ||
<ul class="actions"> | ||
<li> | ||
<input | ||
type="submit" | ||
value="Send Message" | ||
class="primary" | ||
/> | ||
</li> | ||
<li><input type="reset" value="Reset" /></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</form> | ||
</section> | ||
</div> | ||
</div> | ||
|
||
|