16 lines
632 B
HTML
16 lines
632 B
HTML
<h2>Create Project</h2>
|
|
<form action="#" method="POST">
|
|
<label for="title">Title:</label><br>
|
|
<input type="text" id="title" name="title" required><br><br>
|
|
|
|
<label for="progress">Progress:</label><br>
|
|
<input type="text" id="progress" name="progress" required><br><br>
|
|
|
|
<label for="startDate">Start Month/Year:</label><br>
|
|
<input type="month" id="startDate" name="startDate" required><br><br>
|
|
|
|
<label for="description">Description:</label><br>
|
|
<textarea id="description" name="description" rows="20" cols="50" required></textarea><br><br>
|
|
|
|
<input type="submit" name="submit" value="Submit">
|
|
</form> |