Skip to content

Instantly share code, notes, and snippets.

@Jexordexan
Last active January 1, 2018 21:26
Show Gist options
  • Save Jexordexan/2fa409767d5d289977b66a543b7cf480 to your computer and use it in GitHub Desktop.
Save Jexordexan/2fa409767d5d289977b66a543b7cf480 to your computer and use it in GitHub Desktop.
A basic form for netilfy
<template>
<div class="container">
<h1 class="title">
Contact
</h1>
<div class="content">
<form name="contact" action="" method="post">
<label class="form-label" for="name">
Name:
</label>
<input class="form-field" name="name" id="name" />
<label class="form-label" for="email">
Email:
</label>
<input class="form-field" name="email" id="email" />
<label class="form-label" for="message">
Message:
</label>
<textarea class="form-field" name="message" id="message"></textarea>
<input class="form-button" type="submit" value="Send message" />
</form>
</div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment