-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.html
More file actions
64 lines (63 loc) · 2.21 KB
/
Copy pathupload.html
File metadata and controls
64 lines (63 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Upload</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="base.css">
<link rel="stylesheet" href="upload.css">
</head>
<body>
<div class="header">
<div class="inner_header">
<div class="logo_container">
<a href="dashboard.php">
<img src="images/Logo.svg" alt="ProjectStack">
</a>
</div>
<ul class="navigation">
<a href="dashboard.php"><li>Projects</li></a>
<a href="logout.php"><li><img src="images/avatar.svg" alt=""></li></a>
</ul>
</div>
</div>
<div class="parent">
<div class="project">
<form action="upload.php" method="post" enctype="multipart/form-data">
<label for="Topic">Topic Name</label>
<input type="text" name="topic">
<label for="description">Description</label>
<textarea name="description" rows="4" cols="50" class="desc"></textarea>
<label for="image">Images:</label>
<input type="file" name="image">
<label for="code">Code *optional</label>
<textarea name="code" rows="4" cols="50" class="code"></textarea>
<label for="tc">Do you agree the terms and conditions?<a href="tc.html">Read</a></label>
<input type="radio" name="tc" value="Agree">
<label for="agree" class="agr">Agree</label><br>
<input class="sub" type="submit" name="submit" value="Submit">
</form>
</div>
</div>
<footer class="footer">
<div class="footer_logo">
<img src="images/Logo.svg">
</div>
<div>
<h3>Read more about<br>our mission</h3>
<a href="about.html"><h4>About Us</h4></a>
</div>
<div>
<h3>Legal</h3>
<h4>T&C</h4>
<h4>Policies</h4>
</div>
<div class="social_links">
<h3>Social</h3>
<h4>Twitter</h4>
<h4>Instagram</h4>
<h4>Facebook</h4>
</div>
</footer>
</body>
</html>