add form html to contact.html
This commit is contained in:
parent
9f154150ea
commit
d2d0777c0b
|
@ -1,4 +1,22 @@
|
||||||
<article id="contact" class="container max-w-full w-full h-screen bg-gray-700">
|
<article id="contact" class="container max-w-full w-full h-screen bg-gray-700">
|
||||||
<h2>Contact</h2>
|
<h2>Contact</h2>
|
||||||
|
<form>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<label for="name">Name</label>
|
||||||
|
<input id="name" type="text" name="user_name">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="mail">E-mail:</label>
|
||||||
|
<input id="mail" type="email" name="user_email">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="msg">Message:</label>
|
||||||
|
<textarea id="msg" name="user_message"></textarea>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<button id="js-form-send" type="button">Send</button>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</form>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
|
Reference in New Issue