abtmtr-comms/views/pages/contact.ejs

51 lines
2.4 KiB
Text
Raw Normal View History

2024-10-06 07:20:01 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>abtmtr.link site commissions</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/assets/layout.css">
<link rel="stylesheet" href="/assets/elements.css">
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
<main>
<%- include(__dirname + "/views/components/specific/header.ejs") %>
<%- include(__dirname + "/views/components/cakeView.ejs", {
image: "/assets/imgs/emailMatkap.png",
alt: "matkap staring dazed at a physical letter with the letter \"E\" on it, signifying e-mail. he says \"WOW\" at it.",
title: "welcome to the contact page!",
description: `you made it! are you ready?
to make sure you are, so far you should know what you want, what i can do, have acknowledged my terms of service, have chosen a site type, and are sure that you want to continue with this commission request.
got that? then go ahead and shoot me a request!`
}) %>
<h2>use the contact form</h2>
<p>if you're nervous about starting emails like I am sometimes, try this contact form.</p>
<form action="mailto:me@abtmtr.link" method="get" target="_blank">
<p>
<label for="to">To:</label>
<input type="email" id="to" readonly value="me@abtmtr.link" placeholder="To" />
</p>
<p>
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" value="[SITE COMMISSION REQUEST] Hello! I'd like to request a site slot..." />
</p>
<p>
<label for="body">Body:</label><br />
<textarea name="body" id="body" style="width: 100%;box-sizing: border-box;resize: vertical;" rows="6">I'd like to request a [website type]...
I would like it to be about [site details]...
and it will [purpose of site]...
I'll need [possible extra features or other requirements]...
My Cash App cashtag is $[cashtag]...
Thanks!</textarea>
</p>
<input type="submit" id="submit" value="Send email" />
</form>
<h2>email me directly</h2>
<p>Or, if you're more confident, you can send me an email by yourself.</p>
<p><a href="mailto:me@abtmtr.link" target="_blank">me@abtmtr.link</a></p>
<%- include(__dirname + "/views/components/specific/footer.ejs") %>
</main>
</body>
</html>