Skip to content

Commit

Permalink
refactor(contacts): remove email form
Browse files Browse the repository at this point in the history
  • Loading branch information
m-tartari committed Jan 23, 2024
1 parent fe9d608 commit 3fcb1fa
Showing 1 changed file with 0 additions and 68 deletions.
68 changes: 0 additions & 68 deletions contacts.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down

0 comments on commit 3fcb1fa

Please sign in to comment.