Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ Page Title="" Language="C#" MasterPageFile="~/MainMaster.master" AutoEventWireup="true" CodeFile="Signup.aspx.cs" Inherits="Signup2" %>
- <asp:Content ID="Content1" ContentPlaceHolderID="title" Runat="Server">
- Sign Up
- </asp:Content>
- <asp:Content ID="Content2" ContentPlaceHolderID="head" Runat="Server">
- <link rel="stylesheet" href="Content/forms.css" type="text/css" media="all" />
- </asp:Content>
- <asp:Content ID="Content3" ContentPlaceHolderID="PageContent" Runat="Server">
- <h1>
- Sign Up Today!
- </h1>
- <form method="post" class="form">
- <input type="text" name="username" placeholder="Username" class="input" required/>
- <input type="password" name="password" placeholder="Password" class="input" required/>
- <input type="email" name="email" placeholder="Email" class="input" required/>
- <!-- Gender -->
- <div>
- <h3>Gender</h3>
- <input type="radio" name="gender" value="Male" id="male" class="input radio" checked required/>
- <label for="male">Male</label>
- <br />
- <input type="radio" name="gender" value="Female" id="female" class="input radio" />
- <label for="female">Female</label>
- <br />
- </div>
- <!-- Communication Programs -->
- <div>
- <h3>What communication program have you used?</h3>
- <input type="checkbox" name="communication" value="Skype" id="skype" class="input checkbox"/>
- <label for="skype">Skype</label>
- <br />
- <input type="checkbox" name="communication" value="Teamspeak" id="teamspeak" class="input checkbox"/>
- <label for="teamspeak">Teamspeak</label>
- <br />
- <input type="checkbox" name="communication" value="Discord" id="discord" class="input checkbox"/>
- <label for="discord">Discord</label>
- <br />
- <input type="checkbox" name="communication" value="ICQ" id="icq" class="input checkbox"/>
- <label for="icq">ICQ</label>
- <br />
- <br />
- </div>
- <textarea name="about" placeholder="Tell us some about you..." class="input textbox"></textarea>
- <input type="submit" value="Sign Up" class="input submit" />
- </form>
- </asp:Content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement