-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcors.html
33 lines (33 loc) · 1.13 KB
/
cors.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
<!DOCTYPE html>
<html>
<head>
<title>Cross-Origin Resource Sharing</title>
<link rel="stylesheet" href="./assets/cors.css">
<script src="./assets/cors.js"></script>
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
</head>
<body>
<div id="banner">
<h1 id="banner_heading">Cross-Origin Resource Sharing</h1>
<a id="home_link" href="./index.html">Home</a>
</div>
<div id="user_panel">
<div id="input_area">
<form id="url_target_form" onsubmit="testURL(event)">
<label for="url_to_test">URL:</label>
<input name="url_to_test" type="text"><br><br>
<input type="submit" class="submit">
</form>
</div>
<div id="output_area">
<hr>
<div id="result_header">
<h3>Result</h3>
</div>
<div id="output_text">
<p id="results">Enter a URL and hit submit</p>
</div>
</div>
</div>
</body>
</html>