Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. <div class="registration_form">
  2. <!-- Form -->
  3. <form>
  4. <div>
  5. <label>
  6. <input placeholder="first name:" id="txtfname" runat="server" type="text" required>
  7. </label>
  8. &nbsp;&nbsp;</div>
  9. <div>
  10. <label>
  11. <input placeholder="last name:" id="txtlname" runat="server" type="text" required>
  12. </label>
  13. &nbsp;&nbsp;</div>
  14. <div>
  15. <label>
  16. <input placeholder="email address:" id="txtemail" runat="server" type="text" required>
  17. </label>
  18. &nbsp;&nbsp;</div>
  19.  
  20. <div>
  21. <label>
  22. <asp:DropDownList ID="Ddpgender" CssClass="dropdown" runat="server">
  23. <asp:ListItem>Male</asp:ListItem>
  24. <asp:ListItem>Female</asp:ListItem>
  25. </asp:DropDownList>
  26. </label>
  27. &nbsp;&nbsp;</div>
  28.  
  29. <div>
  30. <label>
  31. <input placeholder="password" id="txtpass" runat="server" type="password" required>
  32. </label>
  33. &nbsp;&nbsp;</div>
  34. <div>
  35. <label>
  36. <input placeholder="retype password" id="txtrpass" runat="server" type="password" required>
  37. </label>
  38. &nbsp;&nbsp;</div>
  39.  
  40. <div class="sky-form">
  41. <label class="checkbox"><input type="checkbox" name="checkbox" ><i></i>i agree to shoppe.com &nbsp;<a class="terms" href="#"> terms of service</a> </label>
  42. &nbsp;&nbsp;</div>
  43. <div>
  44. <asp:Button ID="bttnsignup" runat="server" Text="Register"
  45. onclick="bttnsignup_Click" />
  46. </div>
  47. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement