|
|
|
@ -50,28 +50,40 @@
|
|
|
|
|
<h4 class="text-center my-3 pb-3">New Task</h4>
|
|
|
|
|
<form method="post" action="index.php">
|
|
|
|
|
<div class="form-outline mb-4 align-items-center">
|
|
|
|
|
<input name="titreT" type="text" id="form2title" class="form-control" required minlength="0" maxlength="250"/>
|
|
|
|
|
<label class="form-label" for="form2title">Name</label>
|
|
|
|
|
<input name="titreT" type="text" id="form2title" class="form-control" required minlength="0" maxlength="250"/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-outline mb-4">
|
|
|
|
|
<input name="descT" type="text" id="form2description" class="form-control" minlength="0" maxlength="250">
|
|
|
|
|
<label class="form-label" for="form2description">Description</label>
|
|
|
|
|
<input name="descT" type="text" id="form2description" class="form-control" minlength="0" maxlength="250">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-outline mb-4">
|
|
|
|
|
<input name="dateDebT" type="date" id="form2dateDeb" class="form-control">
|
|
|
|
|
<label class="form-label" for="form2dateDeb">Starting date</label>
|
|
|
|
|
<input name="dateDebT" type="date" id="form2dateDeb" class="form-control">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-outline mb-4">
|
|
|
|
|
<input name="dateFinT" type="date" id="form2dateFin" class="form-control">
|
|
|
|
|
<label class="form-label" for="form2dateFin">Ending date</label>
|
|
|
|
|
<input name="dateFinT" type="date" id="form2dateFin" class="form-control">
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-outline mb-4">
|
|
|
|
|
<!-- <div class="form-outline mb-4">
|
|
|
|
|
<input name="prioriteT" type="text" id="form2importance" class="form-control" />
|
|
|
|
|
<label class="form-label" for="form2importance">Importance</label>
|
|
|
|
|
</div> -->
|
|
|
|
|
|
|
|
|
|
<div class="form-outline mb-4">
|
|
|
|
|
<label class="form-label" for="form2importance">Importance</label>
|
|
|
|
|
<select name="prioriteT" id="form2importance" class="form-control">
|
|
|
|
|
<option value="">--Please choose an option--</option>
|
|
|
|
|
<option value="Urgent">Urgent</option>
|
|
|
|
|
<option value="Important">Important</option>
|
|
|
|
|
<option value="Medium">Medium</option>
|
|
|
|
|
<option value="Low">Low</option>
|
|
|
|
|
<option value="None">None</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Submit button -->
|
|
|
|
|