-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (39 loc) · 2.37 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/component.css" />
<link rel="stylesheet" type="text/css" href="css/custom.css" />
<title>Email Sender Extractor</title>
</head>
<body>
<div class="container">
<div class="row mt-5">
<div class="col">
<h1 class="mx-auto">Extract Sender Emails</h1>
</div>
</div>
<div class="row mt-1">
<div class="col">
<form method="POST" action="extractSender.php" enctype="multipart/form-data" class="form-inline">
<div class="row mx-auto">
<div class="col">
<input type="file" name="files[]" id="file-1" class="inputfile inputfile-1" data-multiple-caption="{count} files selected" multiple />
<label for="file-1"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="17" viewBox="0 0 20 17"><path d="M10 0l-5.2 4.9h3.3v5.1h3.8v-5.1h3.3l-5.2-4.9zm9.3 11.5l-3.2-2.1h-2l3.4 2.6h-3.5c-.1 0-.2.1-.2.1l-.8 2.3h-6l-.8-2.2c-.1-.1-.1-.2-.2-.2h-3.6l3.4-2.6h-2l-3.2 2.1c-.4.3-.7 1-.6 1.5l.6 3.1c.1.5.7.9 1.2.9h16.3c.6 0 1.1-.4 1.3-.9l.6-3.1c.1-.5-.2-1.2-.7-1.5z"/></svg> <span>Choose file(s)…</span></label>
<p>Accepts .eml or .msg files only</p>
</div>
<div class="col">
<input type="submit" class="sub-button" value="Extract Senders">
</div>
</div>
</form>
<p class="d-flex"><em class="mx-auto">The upload icon is made by <a href="http://www.danielbruce.se">Daniel Bruce</a> from <a href="http://www.flaticon.com">www.flaticon.com</a> and it is licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</em></p>
<p>Code by <a href="https://github.com/ItsGageHolland">ItsGageHolland</a></p>
</div>
</div>
</div>
<script src="js/custom-file-input.js"></script>
</body>
</html>