Add files via upload

This commit is contained in:
gelis07
2021-10-04 17:09:00 +03:00
committed by GitHub
commit 943504d74a
3 changed files with 211 additions and 0 deletions

24
index.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Page discord</title>
<link rel="stylesheet" href="main.css">
<script src="main.js"></script>
</head>
<body>
<div class="Contact">
<h1 id="ContactText">Contact</h1>
<label class="Name-Input">
<input maxlength=37 minlength="2" id="NameInput" type="text" required/>
<span class="placeholder">Name</span>
</label>
<textarea maxlength ="2000" id="InputField" placeholder="Your message here"></textarea>
<button onclick="send()" id="SendMessage">SendMessage</button>
<h3 id="MessageSent">Message sent!</h3>
<h3 id="MessageFailed">Message failed!</h3>
</div>
</body>
</html>