-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (31 loc) · 1.17 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Suggestion Box</title>
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./css/main.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Suggestion Box</h1>
</header>
<div class="container">
<div class="row">
<div class="col-12 p-5">
<p>Choose one or more files and click on Send.</p>
<?php if(isset($_GET['success']) && $_GET['success'] == 1): ?>
<div class="alert alert-success">
File(s) sent, thank you !
</div>
<?php endif; ?>
<form action="send.php" method="POST" enctype="multipart/form-data">
<div class="input-group">
<input class="form-control" type="file" name="files[]" multiple="multiple" />
<input class="btn btn-success" type="submit" value="Send">
</div>
</form>
</div>
</div>
</div>
</body>
</html>