summaryrefslogtreecommitdiff
path: root/scripts/contact.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/contact.js')
-rw-r--r--scripts/contact.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/scripts/contact.js b/scripts/contact.js
deleted file mode 100644
index e33ac78..0000000
--- a/scripts/contact.js
+++ /dev/null
@@ -1,25 +0,0 @@
-class Contact {
- constructor() {}
-
- Main() {
- const data = {
- contact: `
- <section id='contact'>
- <h1>Contact</h1>
- <div class='form'>
- <p>Full Name:</p>
- <input type='text' name='fullname'/>
- <p>Email:</p>
- <input type='email' name='email'/>
- <p>Message:</p>
- <textarea name='message'></textarea><br>
- <button id='contact-submit'>Submit</button>
- </div>
- </section>
- `
- }
- return data.contact
- }
-}
-
-module.exports = () => {return new Contact()}