-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateproject.html
170 lines (145 loc) · 6.34 KB
/
createproject.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OrbitHub - Create and Publish Project</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<style>
.createProject p {
padding-bottom: 3rem;
}
.createProject label {
display: block;
font-size: 1.1rem;
font-weight: 600;
}
.createProject input,
.createProject textarea {
width: 100%;
padding: 20px;
font-size: 1rem;
}
</style>
</head>
<body>
<header>
<div class="obj-width">
<a href="index.html"><img class="logo" src="images/logo.gif" alt=""></a>
<i class='bx bx-menu' id="bar"></i>
<ul id="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="jobs/job.html">Browse Projects</a></li>
<li><a id="w-btn" href="forms/welcomeform.html"><i class='bx bx-user'></i></a></li>
</ul>
</div>
</header>
<section class="createProject obj-width sec-space extra-space">
<h1>Create and Publish Your Project</h1>
<p>Welcome to our "Publish Your Project" page, where you have the opportunity to share your innovative ideas
and initiatives with our open source and open science community. This platform empowers you to contribute to
the world of technology, science, and space exploration by publishing your project for others to collaborate
on and support.</p>
<form action="submit_project.php" method="POST" enctype="multipart/form-data">
<!-- Project Image Upload -->
<label for="projectImage">Project Image (Upload):</label>
<input type="file" id="projectImage" name="projectImage" accept="image/*" required>
<br><br>
<!-- Project Name -->
<label for="projectName">Project Name:</label>
<input type="text" id="projectName" placeholder="Your project name ..." name="projectName" required>
<br><br>
<!-- Short Description -->
<label for="shortDescription">Short Description (30 words):</label>
<textarea id="shortDescription" name="shortDescription" rows="2" maxlength="30"
placeholder="Write short description about your project ..." required></textarea>
<br><br>
<!-- Brief Description -->
<label for="briefDescription">Brief Description about the project (100-150 words):</label>
<textarea id="briefDescription" placeholder="Write detailed description about your project ..."
name="briefDescription" rows="4" minlength="100" maxlength="150" required></textarea>
<br><br>
<!-- Contributor Roles -->
<label for="contributorRoles">Contributor Roles:</label>
<textarea id="contributorRoles" placeholder="Skills contributors need to have ..." name="contributorRoles"
rows="4" required></textarea>
<br><br>
<!-- Requirements -->
<label for="requirements">Requirements:</label>
<textarea id="requirements" name="requirements" placeholder="Write the requirements about your project ..."
rows="4" required></textarea>
<br><br>
<!-- Contributor Guidelines -->
<label for="contributorGuidelines">Contributor Guidelines:</label>
<textarea id="contributorGuidelines" name="contributorGuidelines" rows="4"
placeholder="Write guidelines about your project ..." required></textarea>
<br><br>
<!-- Project Documentation -->
<label for="projectDocumentation">Project Documentation:</label>
<input type="url" id="projectDocumentation" name="projectDocumentation"
placeholder="URL to Project Documentation" required>
<br><br>
<!-- Timeline and Milestones -->
<label for="timelineMilestones">Timeline and Milestones:</label>
<textarea id="timelineMilestones" name="timelineMilestones" rows="4"
placeholder="Timeline for this project ..." required></textarea>
<br><br>
<!-- Submit Button -->
<button id="g-btn" type="submit">Publish Project</button>
</section>
<footer class="footer">
<div class="obj-width">
<div class="top">
<div>
<img class="logo" src="images/logo.gif" alt="">
<p>All open source projects at one place.</p>
</div>
<div>
<a href="#">
<i class='bx bxl-facebook-square'></i>
</a>
<a href="#">
<i class='bx bxl-instagram-alt'></i>
</a>
<a href="#">
<i class='bx bxl-github'></i>
</a>
<a href="#">
<i class='bx bxl-reddit'></i>
</a>
</div>
</div>
<div class="bottom">
<div>
<h3>Project</h4>
<a href="#">Changelog</a>
<a href="#">Status</a>
<a href="#">License</a>
<a href="#">All Versions</a>
</div>
<div>
<h3>Community</h3>
<a href="#">GitHub</a>
<a href="#">Issues</a>
<a href="#">Project</a>
<a href="../coc.html"> Twitter</a>
</div>
<div>
<h3>Help</h3>
<a href="#">Support</a>
<a href="#">Troubleshooting</a>
<a href="#">Contact Us</a>
</div>
<div>
<h3>Others</h3>
<a href="#">Terms of Service</a>
<a href="#">Privacy Policy</a>
<a href="#">License</a>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>