aboutsummaryrefslogtreecommitdiffstats
path: root/csci4131/hw2/strap012/MyForm.html
diff options
context:
space:
mode:
authorMatthew Strapp <msattr@gmail.com>2021-02-12 13:05:09 -0600
committerMatthew Strapp <msattr@gmail.com>2021-02-12 13:05:09 -0600
commit0bdaee277909295ff4539df694d262d8becae9da (patch)
treeea22011288661407ef6df625fbbae8876c87c086 /csci4131/hw2/strap012/MyForm.html
parentdo hw (diff)
downloadhomework-0bdaee277909295ff4539df694d262d8becae9da.tar
homework-0bdaee277909295ff4539df694d262d8becae9da.tar.gz
homework-0bdaee277909295ff4539df694d262d8becae9da.tar.bz2
homework-0bdaee277909295ff4539df694d262d8becae9da.tar.lz
homework-0bdaee277909295ff4539df694d262d8becae9da.tar.xz
homework-0bdaee277909295ff4539df694d262d8becae9da.tar.zst
homework-0bdaee277909295ff4539df694d262d8becae9da.zip
Help
Diffstat (limited to '')
-rw-r--r--csci4131/hw2/strap012/MyForm.html27
1 files changed, 19 insertions, 8 deletions
diff --git a/csci4131/hw2/strap012/MyForm.html b/csci4131/hw2/strap012/MyForm.html
index 337f26d..2bf0273 100644
--- a/csci4131/hw2/strap012/MyForm.html
+++ b/csci4131/hw2/strap012/MyForm.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<html lang="en">
+<html lang="en-US">
<head>
<meta charset="utf-8">
@@ -17,23 +17,34 @@
</table>
</nav><br>
<h2>Simple Form</h2>
- <form method="post">
+ <form action="http://www-users.cselabs.umn.edu/~joh13266/echo.php/" method="post">
<p>
<label>Name:
- <input name="name" type="text" size="25" maxlength="30"><br><br>
+ <input name="name" type="text" size="25" maxlength="30" id="name"><br><br>
+ </label>
+ <label>Category:
+ <select name="category" type="text" id="category">
+ <option value="Personal">Personal</option>
+ <option value="Academic">Academic</option>
+ <option value="Industry">Industry</option>
+ </select><br><br>
+ </label>
+ <label>Location:
+ <input name="location" type="text" size="25" maxlength="250" id="location"><br><br>
+ </label>
+ <label>Contact Information:
+ <input name="contact" size="25" maxlength="250" id="contact"><br><br>
</label>
<label>Email:
- <input name="email" Type="email" size="25" maxlength="30"> (name@test.dom)<br><br>
+ <input name="email" Type="email" size="25" maxlength="30" id="email"><br><br>
</label>
<label> URL
- <input name="URL" Type="url" size="25" maxlength="30">(/https?/g://web.site)<br>
+ <input name="website" Type="url" size="25" maxlength="30" id="website"><br>
</label>
-
-
</p>
<p>
<input type="submit" value="Submit">
<input type="reset" value="Clear">
</p>
</form>
-</body> \ No newline at end of file
+</body>