-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
55 lines (52 loc) · 2.14 KB
/
post.html
File metadata and controls
55 lines (52 loc) · 2.14 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
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Beat-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">POST A SONG</h1>
<!-- Section: Login -->
<div class="post">
<form action="home.html" method="post">
<label for="song title">Song Title:</label><br>
<input type="text" id="song title" name="song title" maxlength="30" required><br>
<label for="artist">Artist:</label><br>
<input type="text" id="artist" name="artist" maxlength="30" required><br>
<label for="desc">Description:</label><br>
<textarea id="desc" name="desc" maxlength="600"></textarea><br>
<label for="img">Upload Album Cover:</label><br>
<input type="file" id="img" name="img" accept=".png, .jpg, .jpeg" required><br>
<label for="audio">Upload Audio File:</label><br>
<input type="file" id="audio" name="audio" accept="audio/*" required><br>
<label for="link">(Optional) Link to Song:</label><br>
<input type="text" id="link" name="link"><br>
<input type="button" value="Post" onclick="newPost()">
</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>