netproxy / tests / Netproxy.Testing / wwwroot / index.html
Code · 43 lines · 1271 bytes
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<!doctype html>
<html lang="en">
<head>
	<title>Just Testing</title>
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<meta charset="utf-8" />

	<!-- nugetpackage netproxy -->
	<link href="css/netproxyspinner.css" rel="stylesheet" />
	<script src="scripts/macros.js?1" defer></script>
	<script src="scripts/netproxy.js?1" defer></script>

	<link href="Default.css" rel="stylesheet" />
	<link href="Ui.css" rel="stylesheet" />
	<script src="Default.js" defer></script>

</head>
<body>
	<img src="images/netproxyspinner.gif" id="netproxyspinner" />

	<div><span id="UnitTest" class="ui-btn">Unit Test</span></div>

	<div id="Result"></div>

	<div id="UploadExample">
		<label class="UploadImage ui-btn" for="UploadImage">Upload a File</label>
		<input type="file" id="UploadImage" />
	</div>

	<div><span id="MultiBinderTest" class="ui-btn">MultiBinderTest</span></div>

	<div><span id="PostIt" class="ui-btn">PostIt</span></div>

	<div><a href="speedtest.html" class="ui-btn">SpeedTest</a></div>

	<form action="/api/upload" method="post" enctype="multipart/form-data">
		<label for="files">Select multiple files:</label>
		<input type="file" name="files" id="files" multiple>
		<button type="submit">Upload</button>
	</form>

</body>
</html>