forked from Nitrama/HTTP-Header-Live
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTTPHeaderSub.html
More file actions
executable file
·31 lines (27 loc) · 1.05 KB
/
Copy pathHTTPHeaderSub.html
File metadata and controls
executable file
·31 lines (27 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title>HTTP Header Live Sub</title>
<link rel="shortcut icon" type="image/x-icon" href="icons/icon.svg">
<link rel="stylesheet" href="css/style_sub.css">
<meta charset="utf-8">
</head>
<body>
<div class="header_url">
<select id="select_method" size="1">
<option value="GET" selected>GET</option>
<option value="POST">POST</option>
<option value="HEAD">HEAD</option>
<option value="PUT">PUT</option>
<option value="DELETE">DELETE</option>
<option value="OPTIONS">OPTIONS</option>
<option value="PATCH">PATCH</option>
</select><input type="text" value="" id="header_url">
</div>
<pre contenteditable="true" id="header_data"></pre>
<pre contenteditable="true" id="post_data"></pre>
<div id="footer"><button type="button" id="replay_send_button" data-i18n="replay_send_button"></button><label id="content_length_label" data-i18n="content_length_label_default"></label></div>
<script src="internationalization.js"></script>
<script src="HTTPHeaderSub.js"></script>
</body>
</html>