-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.77 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.77 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
32
33
34
35
36
37
38
39
<html>
<head>
<title>Upload Test</title>
<meta name="description" content="">
<meta name="keywords" content="">
<!---------------------------------------------------------------------------->
<!-- Meta -------------------------------------------------------------------->
<!---------------------------------------------------------------------------->
<meta charset="UTF-8">
<meta name="robots" content="noindex, nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<link rel="apple-touch-icon" sizes="180x180"
href="/favico/white/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favico/white/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favico/white/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favico/white/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/favico/white/safari-pinned-tab.svg" color="#000000">
<link rel="shortcut icon" href="/favico/white/favicon.ico">
<meta name="apple-mobile-web-app-title" content="Upload Test">
<meta name="application-name" content="Upload Test">
<meta name="msapplication-config" content="/browserconfig.xml">
<meta name="theme-color" content="#000000">
</head>
<body>
<h1>Testing file upload in Home Screen App</h1>
<form method="post" action="/" enctype="multipart/form-data">
<input type="text" name="thetext">
<input type="file" name="thefile">
<button>Submit</button>
</form>
</body>
</html>