Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <meta name="viewport" content="width=device-width" />
  6. <title>SignUp</title>
  7. <link href="" rel="stylesheet" />
  8. </head>
  9. <body>
  10. <div class="panel panel-success">
  11. <div><h4>Register Form</h4></div>
  12. <div class="panel-body">
  13. <form class="p-a-1" asp-action="RsvpForm" method="post">
  14. <div asp-validation-summary="All"></div>
  15. <div class="form-group">
  16. <label asp-for="Name">Your Name:</label>
  17. <input class="form-control" asp-for="Name" />
  18. </div>
  19. <div class="form-group">
  20. <label asp-for="Email">Your Email:</label>
  21. <input class="form-control" asp-for="Email" />
  22. </div>
  23. <div class="form-group">
  24. <label asp-for="Phone">Your Phone:</label>
  25. <input class="form-control" asp-for="Phone" />
  26. </div>
  27. <div class="form-group">
  28. <label>Will you attend?</label>
  29. <select class="form-control" asp-for="WillAttend">
  30. <option value="">Choose an option</option>
  31. <option value="true">Yes, I'll be there</option>
  32. <option value="false">No, I can't come</option>
  33. </select>
  34. </div>
  35. <button class="btn btn-primary" type="submit">
  36. Submit RSVP
  37. </button>
  38. </form>
  39.  
  40. </div>
  41.  
  42. </div>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement