Advertisement
Guest User

Untitled

a guest
Mar 26th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. @using WebApplication1.Models
  2. @model Pizza
  3.  
  4. @{
  5. ViewBag.Title = "pizzaView";
  6. }
  7.  
  8. <h2>pizzaView</h2>
  9.  
  10. <form action="/" method="post">
  11. <p>Besteller</p>
  12. <input type="text" name="besteller" />
  13.  
  14. <p>Pizza:</p>
  15. <input type="text" name="pizzaNaam" />
  16.  
  17. <p>Extra kaas:</p>
  18. <input type="checkbox" name="cheese"/>
  19.  
  20. <p>Betaalwijze</p>
  21. <input type="radio" name="payment" value="Cash"/> Cash
  22. <input type="radio" name="payment" value="Cheque" /> Cheque
  23. <input type="radio" name="payment" value="Overschrijving" /> Overschrijving
  24.  
  25. <button type="submit">Submit</button>
  26.  
  27. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement