-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.htm
28 lines (25 loc) · 885 Bytes
/
options.htm
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
<html>
<title> DD capabilities </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<body>
<h3>Enter info</h3>
Enter the following info <br />
<form action = "http://dd-poc.herokuapp.com/process_get" method = "GET">
First Name: <input type = "text" name = "first_name"><br>
Last Name: <input type = "text" name = "last_name"><br />
<br />
<input type = "submit" value = "Submit">
</form>
<br />
<br />
<br />
<br />
<h3>File Upload:</h3>
Select a file to upload: <br />
<form action = "http://dd-poc.herokuapp.com/file_upload" method = "POST"
enctype = "multipart/form-data">
<input type="file" name="file" size="50" /><br /><br />
<input type = "submit" value = "Upload File" />
</form>
</body>
</html>