Advertisement
Evyatar12

Signup.aspx

Dec 28th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.33 KB | None | 0 0
  1. <%@ Page Title="" Language="C#" MasterPageFile="~/MainMaster.master" AutoEventWireup="true" CodeFile="Signup.aspx.cs" Inherits="Signup2" %>
  2.  
  3. <asp:Content ID="Content1" ContentPlaceHolderID="title" Runat="Server">
  4.     Sign Up
  5. </asp:Content>
  6. <asp:Content ID="Content2" ContentPlaceHolderID="head" Runat="Server">
  7.     <link rel="stylesheet" href="Content/forms.css" type="text/css" media="all" />
  8. </asp:Content>
  9. <asp:Content ID="Content3" ContentPlaceHolderID="PageContent" Runat="Server">
  10.     <h1>
  11.         Sign Up Today!
  12.     </h1>
  13.  
  14.     <form method="post" class="form">
  15.         <input type="text" name="username" placeholder="Username" class="input" required/>
  16.         <input type="password" name="password" placeholder="Password" class="input" required/>
  17.         <input type="email" name="email" placeholder="Email" class="input" required/>
  18.  
  19.         <!-- Gender -->
  20.         <div>
  21.             <h3>Gender</h3>
  22.             <input type="radio" name="gender" value="Male" id="male" class="input radio" checked required/>
  23.             <label for="male">Male</label>
  24.             <br />
  25.  
  26.             <input type="radio" name="gender" value="Female" id="female" class="input radio" />
  27.             <label for="female">Female</label>
  28.             <br />
  29.  
  30.         </div>
  31.                
  32.         <!-- Communication Programs -->
  33.         <div>
  34.             <h3>What communication program have you used?</h3>
  35.             <input type="checkbox" name="communication" value="Skype" id="skype" class="input checkbox"/>
  36.             <label for="skype">Skype</label>
  37.             <br />
  38.  
  39.             <input type="checkbox" name="communication" value="Teamspeak" id="teamspeak" class="input checkbox"/>
  40.             <label for="teamspeak">Teamspeak</label>
  41.             <br />
  42.  
  43.             <input type="checkbox" name="communication" value="Discord" id="discord" class="input checkbox"/>
  44.             <label for="discord">Discord</label>
  45.             <br />
  46.  
  47.             <input type="checkbox" name="communication" value="ICQ" id="icq" class="input checkbox"/>
  48.             <label for="icq">ICQ</label>
  49.             <br />
  50.             <br />
  51.         </div>
  52.  
  53.         <textarea name="about" placeholder="Tell us some about you..." class="input textbox"></textarea>
  54.  
  55.         <input type="submit" value="Sign Up" class="input submit" />
  56.     </form>
  57. </asp:Content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement