-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomework_new.php
More file actions
35 lines (28 loc) · 1.25 KB
/
homework_new.php
File metadata and controls
35 lines (28 loc) · 1.25 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
<?php include 'inc/header1.php' ?>
Εργασίες
<?php include 'inc/header2.php' ?>
<div class="container">
<div class="content">
<form action="homework_upload.php" method="POST" enctype="multipart/form-data">
<p>
<label for="goals"><b>Στόχοι:</b></label><br>
<textarea name="goals" id="goals" cols="30" rows="4" placeholder="Γράψτε τους στόχους"></textarea>
</p>
<p>
<label for="due"><b>Παραδοτέα:</b></label><br>
<textarea name="due" id="due" cols="30" rows="4" placeholder="Αναγράψτε τα παραδοτέα"></textarea>
</p>
<p>
<label for="deadline"><b>Προθεσμία (ημερομηνία & ώρα):</b>:</label><br>
<input type="datetime-local" id="deadline" name="deadline">
</p>
<p>
<label for="body"><b>Αρχείο εκφώνησης:</b></label><br>
<input type="file" name="file">
<br>
</p>
<input type="submit" name='submit' value='Ανάρτηση' style="margin-bottom: 5%;">
</form>
</div>
</div>
<?php include 'inc/footer.php' ?>