-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsigup form.txt
72 lines (64 loc) · 2.9 KB
/
sigup form.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>SignUp Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<!-- Custom Theme files -->
<link href="Style.css" rel="stylesheet" type="text/css" media="all" />
<!-- //Custom Theme files -->
<!-- web font -->
<link href="//fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i" rel="stylesheet">
<!-- //web font -->
<style>
</style>
</head>
<body>
<!-- main -->
<div class="main-w3layouts wrapper">
<h1>Creative SignUp Form</h1>
<div class="main-agileinfo">
<div class="agileits-top">
<form runat="server" method="post">
<%-- <input class="text" type="text" name="id" placeholder="id" runat="server" required="">--%>
<asp:TextBox ID="id" type="text" runat="server" placeholder="id" required=""></asp:TextBox><br />
<%-- <input class="text email" type="text" name="email" placeholder="Email" runat="server" required="">--%>
<asp:TextBox ID="email" type="text" runat="server" placeholder="Email" required=""></asp:TextBox><br />
<%-- <input class="text" type="password" name="password" placeholder="Password" runat="server" required="">--%>
<asp:TextBox ID="password" type="password" runat="server" placeholder="Password" required=""></asp:TextBox><br />
<%-- <input class="text w3lpass" type="text" name="accesslevel" placeholder="accesslevel " runat="server" required="">--%>
<asp:TextBox ID="cpassword" type="text" runat="server" placeholder="Confirm Password" required=""></asp:TextBox><br />
<%-- <input class="text w3lpass" type="text" name="name" placeholder="Name" runat="server" required="">--%>
<asp:TextBox ID="accesslevel" type="text" runat="server" placeholder="AccessLevel" required=""></asp:TextBox><br />
<asp:TextBox ID="name" type="text" runat="server" placeholder="ENTER UR Name" required=""></asp:TextBox><br />
<asp:FileUpload ID="FileUpload1" runat="server" /><br />
<div class="wthree-text">
<label class="anim">
<input type="checkbox" class="checkbox" required="">
<span>I Agree To The Terms & Conditions</span>
</label>
<div class="clear"> </div>
</div>
<%-- <input Button ID="Button1" type="submit" runat="server" value="SIGNUP">--%>
<asp:Button ID="SIGNUP" runat="server" Text="SIGNUP" type="submit" OnClick="SIGNUP_Click"/>
</form>
<p>have an Account? <a href="LogIn Form.aspx"> Login Now!</a></p>
</div>
</div>
<ul class="colorlib-bubbles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<!-- //main -->
</body>
</html>