GameNCode

Signup Page

Dec 24th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  2. pageEncoding="ISO-8859-1"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  7. <title>Signup</title>
  8. <link rel="stylesheet" type="text/css" href="Style.css">
  9. </head>
  10. <body>
  11. <img src="${pageContext.request.contextPath}/images/pen.jpg" height = "500px" width = "1000px" align = "middle"/>
  12. <a name="home"></a>
  13. <div>
  14. <h1>Welcome to our Pen Sale Site!!!!!</h1>
  15. <form id="signup" action="Success.jsp" method="get">
  16. <ul>
  17. <li><a href="#">Home</a></li>
  18. <li><a href="#news">News</a></li>
  19. <li><a href="ContactUs.jsp">Contact</a></li>
  20. <li><a href="#about">About</a></li>
  21. <li><a href="Signup.jsp">Sign Up</a></li>
  22. </ul>
  23. <hr>
  24. Enter username: &nbsp; <input type="text" name="uname" placeholder="Username"></br>
  25. Enter password: &nbsp; <input type="password" name="pass" placeholder="Password"></br>
  26. Enter email: &nbsp; <input type="email" name="mail" placeholder="exmaple@email.com"></br>
  27. Deposit funds: &nbsp; <input type="number" name="cash" placeholder="1000" min="1" max="100000"></br>
  28. Birthdate: &nbsp; <input type="date" name="bday"></br>
  29. <hr>
  30. <h2>Enter your gender: </h2></br>
  31. <input type="radio" name="gender" value="Male" checked> Male</br>
  32. <input type="radio" name="gender" value="Female">Female</br>
  33. <input type="radio" name="gender" value="Attack Helicopter">Attack Helicopter</br>
  34. <hr>
  35. <h2>Select your favorite pen color</h2>
  36.  
  37. <select name="Pen">
  38. <option value="blue">Blue</option>
  39. <option value="red">Red</option>
  40. <option value="green">Green</option>
  41.  
  42. </select>
  43. </br>
  44. <input type="checkbox" name="own" value="Eraser">Own an Eraser</br>
  45. <input type="checkbox" name="own" value="Pencil">Own a Pencil</br>
  46. </br>
  47. <input type="submit">
  48. </form>
  49. </body>
  50. </html>
Add Comment
Please, Sign In to add comment