Subversion Repositories camp_sysinfo_client_3

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
236 rodolico 1
<!--
2
   test.html
3
 
4
   Copyright 2022 R. W. Rodolico <rodo@dailydata.net>
5
 
6
   This program is free software; you can redistribute it and/or modify
7
   it under the terms of the GNU General Public License as published by
8
   the Free Software Foundation; either version 2 of the License, or
9
   (at your option) any later version.
10
 
11
   This program is distributed in the hope that it will be useful,
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
   GNU General Public License for more details.
15
 
16
   You should have received a copy of the GNU General Public License
17
   along with this program; if not, write to the Free Software
18
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
   MA 02110-1301, USA.
20
 
21
 
22
-->
23
 
24
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
25
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
26
 
27
<head>
28
   <title>Test File Upload</title>
29
   <meta http-equiv="content-type" content="text/html;charset=utf-8" />
30
   <meta name="generator" content="Geany 1.33" />
31
</head>
32
 
33
<body>
34
   <form enctype="multipart/form-data" method="POST" action="upload_file.php">
35
      <label for="upload_type">Upload Type:</label> 
36
      <input type="text" id="upload_type" name="upload_type"><br>
37
      <label for="report_date">Report Date:</label>
38
      <input type="text" id="report_date" name="report_date"><br>
39
      <label for="client">Client:</label> 
40
      <input type="text" id="client" name="client"><br>
41
      <label for="serialnumber">Serial Number:</label>
42
      <input type="text" id="serialnumber" name="serialnumber"><br>
43
      <label for="file">File:</label> 
44
      <input id="file" type="file" name="fileToUpload"><br>
45
      <input type="submit" value="Submit">
46
   </form> 
47
</body>
48
 
49
</html>