-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
76 lines (58 loc) · 2.87 KB
/
signup.html
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
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name ="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<title>GoCrawl - Lets Crawl Smartly !</title>
<link href="styles/signup.css" rel="stylesheet" style="text/css"</link>
</head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.3.min.js"></script>
<body>
<nav class="navbar navbar-default navbar-fixed-top" role = "navigation" >
<div class = "navbar-header">
<div class = "navbar-brand">
<img class="logo" src="styles/images/h1.png">
</div>
</div>
<div id="headermodify">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="signin.php"><b>Sign In</b></a></li>
<li class="active"><a href="signup.html"><b>Sign Up</b></a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="col-md-4"></div>
<div class="col-md-4">
<form class="form-signin" action="userint.php" method="POST">
<div class="form-group">
<input type="text" class="form-control" name="name" id="name" placeholder="Name" style="color: initial;" autocomplete="off" required autofocus>
</div>
<div class="form-group">
<input type="email" class="form-control" id="mail" placeholder="Email ID" name="emailid" style="color: initial;" autocomplete="off">
</div>
<div class="form-group">
<input type="text" class="form-control" id="usr" placeholder="Username" name="uname" style="color: initial;" autocomplete="off">
</div>
<div class="form-group">
<input type="password" class="form-control" id="mail" placeholder="Password" name="password" style="color: initial;" autocomplete="off">
</div>
<div class="form-group">
<input type="text" name="mobile"class="form-control" id="mobno" placeholder="Mobile No" style="color: initial;" autocomplete="off">
</div>
<div class="form-group">
<input type="date" name="dob"class="form-control" id="dob" placeholder="Date of Birth" style="color: initial;" autocomplete="off">
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit" name="signup" method="POST" onclick="userint.php">Sign Up</button>
</form>
</div>
<div class="col-md-4"></div>
</div>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>