-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.html
67 lines (57 loc) · 2.19 KB
/
upload.html
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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="upload.css">
<title>Project Platform</title>
</head>
<body>
<nav>
<div class="logo">
<img src="img/logo2.png" alt="Logo">
</div>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Upload</a></li>
<li><a href="#">Profile</a></li>
</ul>
</nav>
<div class="container">
<div class="section upload-section">
<h2>Upload Your Project</h2>
<form class="upload-form">
<div class="form-group">
<label for="projectName">Project Name</label>
<input type="text" id="projectName" name="projectName" placeholder="Enter project name">
</div>
<div class="form-group">
<label for="description">Description</label>
<textarea id="description" name="description" rows="4" placeholder="Describe your project..."></textarea>
</div>
<div class="form-group">
<label for="tags">Tags</label>
<input type="text" id="tags" name="tags" placeholder="e.g., Web, AI, Python">
</div>
<div class="form-group">
<label for="fileUpload">Upload Project Files</label>
<input type="file" id="fileUpload" name="fileUpload" accept=".zip,.rar">
</div>
<div class="form-group">
<button type="submit">Submit Project</button>
</div>
</form>
</div>
<div class="section search-section">
<h2>Search for Projects</h2>
<div class="search-bar">
<input type="text" id="search" placeholder="Search projects by name or tags">
<button type="submit">Search</button>
</div>
<div class="search-results">
</div>
</div>
</div>
</body>
</html>