aboutsummaryrefslogtreecommitdiffstats
path: root/csci4131/hw2/strap012/MyForm.html
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2021-02-12 16:50:26 -0600
committerRossTheRoss <mstrapp@protonmail.com>2021-02-12 16:50:26 -0600
commit76e433c7225d5e0394c449bed000b2a44e9b6f64 (patch)
tree899fd2d9905e356491cd5647cc3fb014528d97e3 /csci4131/hw2/strap012/MyForm.html
parentH (diff)
downloadhomework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar
homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.gz
homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.bz2
homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.lz
homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.xz
homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.tar.zst
homework-76e433c7225d5e0394c449bed000b2a44e9b6f64.zip
Finish Web
Diffstat (limited to 'csci4131/hw2/strap012/MyForm.html')
-rw-r--r--csci4131/hw2/strap012/MyForm.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/csci4131/hw2/strap012/MyForm.html b/csci4131/hw2/strap012/MyForm.html
index 2bf0273..261d8df 100644
--- a/csci4131/hw2/strap012/MyForm.html
+++ b/csci4131/hw2/strap012/MyForm.html
@@ -18,28 +18,28 @@
</nav><br>
<h2>Simple Form</h2>
<form action="http://www-users.cselabs.umn.edu/~joh13266/echo.php/" method="post">
- <p>
+ <p class="Form">
<label>Name:
- <input name="name" type="text" size="25" maxlength="30" id="name"><br><br>
+ <input name="name" pattern="[A-za-z0-9]+" required title="Contact's name must be alphanumeric." type="text" size="25" maxlength="30" id="name"><br><br>
</label>
<label>Category:
- <select name="category" type="text" id="category">
+ <select name="category" required id="category" size=3>
<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>
+ <input name="location" required 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>
+ <input name="contact" required size="25" maxlength="250" id="contact"><br><br>
</label>
<label>Email:
- <input name="email" Type="email" size="25" maxlength="30" id="email"><br><br>
+ <input name="email" required Type="email" size="25" maxlength="30" id="email"><br><br>
</label>
<label> URL
- <input name="website" Type="url" size="25" maxlength="30" id="website"><br>
+ <input name="website" required Type="url" size="25" maxlength="30" id="website"><br>
</label>
</p>
<p>