-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
51 lines (48 loc) · 1.87 KB
/
contact.html
File metadata and controls
51 lines (48 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Best-Switch</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<!-- Header -->
<div class="header">
<h1>Beat-Switch</h1>
<div class="topnav">
<a href="home.html">Home</a>
<a href="post.html">Post</a>
<a href="contact.html">Contact</a>
<a href="dms.html">Messages</a>
<a href="login.html">Log Out</a>
</div>
</div>
<h1 class="title">SEND A MESSAGE</h1>
<!-- Section: Login -->
<div class="post">
<form action="dms.html" method="post">
<label for="reciever">Send To:</label><br>
<input type="text" id="reciever" name="reciever" maxlength="50" required><br>
<label for="topic">Topic:</label><br>
<input type="text" id="topic" name="topic" maxlength="75" required><br>
<label for="desc">Message:</label><br>
<textarea id="desc" name="desc" maxlength="2000"></textarea><br>
<label for="audio">(Optional) Upload Audio File:</label><br>
<input type="file" id="audio" name="audio" accept="audio/*" required><br>
<input type="button" value="Send Message" onclick="newMsg()">
</form>
</div>
<!-- Footer -->
<div class="footer">
<p>© 2024 Mankirt Hothi 219384239.</p>
<address>
Written By: Mankirt Hothi<br>
Made for ITEC 3020 A Fall 2024<br>
York University<br>
Professor Shadikur Rahman<br>
</address>
</div>
</body>
</html>