lots of changes

This commit is contained in:
2023-07-14 18:27:49 +02:00
parent 4d48b4f6ce
commit 804f5f2f63
25 changed files with 546 additions and 193 deletions

View File

@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<head>
<title>Support - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<link rel="stylesheet" href="/css/pages/formstyle.css">
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="nav"></div>
<div class="title-container">
<div class="title-wrapper">
<h1 class="title">Contact</h1>
<h2 class="subtitle">Need to get personal support or have any other query to share with me?</h2>
</div>
</div>
<div class="content-wrapper">
<div class="content">
<h3 class="content-title-small">Before you contact me</h3>
<p style="margin-bottom: 10%;">Make sure that you have gone through the <a href="/support" class="textlink">Support</a> page and tried all the guides there before you contact me.</p>
<form action="https://api.janishutz.com/contact?origin=main" method="post" class="form">
<label for="name" class="label">Full name *</label><br>
<input type="text" name="name" id="name" placeholder="Your full name" required class="input"><br>
<label for="mail" class="label">Your email address *</label><br>
<input type="email" name="mail" id="mail" placeholder="Your email address" required class="input"><br>
<label for="message" class="label">Your message *</label><br>
<textarea name="message" id="message" placeholder="Your message" required minlength="50" rows="7" class="textarea"></textarea><br>
<p class="label smallest-size">* required</p>
<input type="submit" value="Submit" class="submit"><br>
</form>
</div>
</div>
<div id="footer"></div>
</body>
</html>