-
Notifications
You must be signed in to change notification settings - Fork 0
/
chunkpg.html
120 lines (84 loc) · 4.12 KB
/
chunkpg.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chunk Page</title>
<link rel="stylesheet" href="chunkpg.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Baskervville&display=swap" rel="stylesheet"></head>
<body>
<div class="container">
<div class="left">
<div class="logo">
<img id="logo" src="images/logo.svg">
<p>Chunk-It</p>
</div>
<div class="nav-links">
<ul>
<li><img class="icon" src="images/home.svg" alt=""> <a href="dashboard.html">Home</a></li>
<li><img class="icon" src="images/file.svg" alt=""> <a id="icon" href="chunkpg.html">Chunk File</a></li>
<li><img class="icon" src="images/globe.svg" alt=""> <a href="">History</a></li>
<li><img class="icon" id="dicon" src="images/download.svg" alt=""><a id="dwnld" href="" onclick="popup() ;return myFunction()">Download</a></li>
<li><img class="icon" src="images/call.svg" alt=""> <a href="contactus.html">Contact Us</a></li>
</ul>
</div>
</div>
<div class="right">
<div class="logout">
<a href="signin.html">Log out</a>
</div>
<div id="blur">
<div class="content">
<div class="input_file">
<form onsubmit="return myFunction();">
<p>Drag and Drop a File</p>
<span>OR</span>
<!-- <button>Upload File</button> -->
<label id="label" for="Upload">Select a CSV / JSON file</label>
<span id="cfile" > <input type="file" class="button" name="Upload" placeholder="Browse" accept=".csv, .json"/></span>
</form>
</div>
<div class="input_file1">
<p class="info">File must not exceed 5000MB</p>
<form onsubmit="return myFunction();">
<label class="sizes">Select sizes of chunks</label>
<input type="number" id="sizes" name="sizes" min="1" placeholder="Size" /><br>
<div class="append"> <input type="radio" name="format" value="Bytes"/><label for="Bytes">Bytes</label><br>
<input type="radio" name="format" value="KB"/><label for="KB">KB</label><br>
<input type="radio" name="format" value="MB"/><label for="MB">MB</label><br>
<input type="radio" name="format" value="GB"/><label for="GB">GB</label><br></div>
<div class="outputFormat"> <label>
Select Output Format</label>
<select >
<option value="Choose Format">Choose Format</option>
<option value="JSON">JSON</option>
<option value="CSV">CSV</option>
</select>
</div>
<a class="submit" onclick="popup()">Chunk File</a>
</form>
</div>
</div>
</div>
<div class="downloadpg" id="download">
<p id="p" >Here are your chunked files</p>
<div class="fileimg">
<img src="images/folder.svg" alt="">
</div>
<div class="links">
<p>Files not downloaded are automatically deleted after 24hours</p>
<a href="">Download</a><br>
<a href="">Save</a>
</div>
</div>
<div class="footer">
<p><a href="privacy.html">Privacy Policy</a></p>
<p>API Developement</p>
<p>Terms and Services</p>
<div class="copyright">
© Zuri Team_Frogpp 2022
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>