-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (48 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>bulk cURL</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="vendor/pace/pace-theme-flash.css">
<link rel="stylesheet" href="vendor/sweetalert/sweetalert.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="screen" id="first-screen">
<h1 class="title">Bulk cURL</h1>
<h4 class="sub-title">Enter URLs here</h4>
<textarea name="url-list" wrap="off" id="url-list"></textarea>
<button id="lunch">Lunch</button>
</div><!-- .first-screen -->
<div class="screen" id="second-screen">
<h1 class="title">Bulk cURL</h1>
<h4 class="sub-title">Output Table</h4>
<p class="notify-msg"></p>
<div class="tbl-header">
<table cellpadding="0" cellspacing="0" border="0">
<thead>
<tr>
<th>No</th>
<th>URL</th>
<th>Result</th>
</tr>
</thead>
</table>
</div><!-- .tbl-header -->
<div class="tbl-content">
<table cellpadding="0" cellspacing="0" border="0">
<tbody id="output-body">
</tbody>
</table>
</div><!-- .tbl-content -->
</div><!-- .second-screen -->
</div><!-- .wrapper -->
<script src="vendor/pace/pace.min.js"></script>
<script src="vendor/superplaceholder.js/superplaceholder.min.js"></script>
<script src="vendor/localForage/localforage.min.js"></script>
<script src="vendor/sweetalert/sweetalert.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>