-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (63 loc) · 2.83 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fake file creator</title>
<link rel="stylesheet" href="https://use.typekit.net/onw7kix.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="content">
<h1>FAKE FILE CREATOR</h1>
<form action="destroyer.php" method="POST">
<div class="row">
<div class="form-content filename">
<label>File name</label>
<input type="text" id="filename" name="filename" style="width: 260px;">
</div>
<div class="form-content fileext" style="width: 120px;">
<label>Extension</label>
<select name="ext" id="ext">
<option value="" disabled selected></option>
<option value=".pptx">.pptx</option>
<option value=".docx">.docx</option>
<option value=".xlsx">.xlsx</option>
<option value=".txt">.txt</option>
<option value=".zip">.zip</option>
<option value=".png">.png</option>
<option value=".jpg">.jpg</option>
<option value=".eps">.eps</option>
<option value=".psd">.psd</option>
<option value=".mov">.mov</option>
<option value=".mp4">.mp4</option>
<option value=".mp3">.mp3</option>
<option value=".pdf">.pdf</option>
</select>
</div>
</div>
<div class="row">
<div class="form-content filesize">
<label>File size</label>
<input type="number" id="filesize" name="filesize" style="width: 260px;">
</div>
<div class="form-content sizeunit">
<label>Unit</label>
<select name="unit" id="unit" style="width: 120px;">
<option value="b">Bytes</option>
<option value="kb">KB</option>
<option value="mb" selected>MB</option>
<option value="gb">GB</option>
</select>
</div>
</div>
<div class="submit">
<input type="submit" value="Create File">
</div>
</form>
</div>
</div>
</body>
</html>