Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>User Creation App</title>
  7. <link rel="stylesheet" type="text/css" href="UserCreationAppStyles-HW.css" />
  8. <script type="text/javascript" src="UserCreationAppJS-HW.js"></script>
  9. </head>
  10.  
  11. <body>
  12. <div id="title">
  13. <h1>User Creation App</h1>
  14. <h2>Please enter your information:</h2>
  15. </div>
  16. <div id="formArea">
  17. <form>
  18. <label>First Name </label>
  19. <input type="text" placeholder="First Name" id="input-fname" value=""><br>
  20. <label>Last Name </label>
  21. <input type="text" placeholder="Last Name" id="input-lname" value=""><br>
  22. <label>User Name </label>
  23. <input type="text" placeholder="User Name" id="input-username" value=""><br>
  24. <label>Email </label>
  25. <input type="email" placeholder="Email" id="input-email" value=""><br>
  26.  
  27. <input type="button" value="Submit" onclick="userInfo()" />
  28. <div id="documentWrite"> </div>
  29. </form>
  30. </div>
  31. </body>
  32.  
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement